install-plugins.sh 96 B

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