install-plugins.sh 86 B

1234567
  1. #!/bin/sh
  2. export IFS=","
  3. for plugin in $INSTALL_PLUGINS; do
  4. yarn add $plugin
  5. done