CommunityVotingApp/scripts/www_npm_install.sh

8 lines
109 B
Bash
Raw Normal View History

2020-04-22 14:20:00 -06:00
#!/bin/bash
echo "Installing node modules in www/..."
cd www
2020-04-27 18:38:55 -06:00
npm install --no-bin-links --production
2020-04-22 14:20:00 -06:00
cd ..