CommunityVotingApp/scripts/www_npm_install.sh
2020-04-22 14:20:00 -06:00

8 lines
81 B
Bash
Executable File

#!/bin/bash
echo "Installing node modules in www/..."
cd www
npm install
cd ..