HelenaExpressApp/scripts/www_npm_install.sh

8 lines
81 B
Bash
Raw Normal View History

2020-10-10 19:26:30 -06:00
#!/bin/bash
echo "Installing node modules in www/..."
cd www
npm install
cd ..