FixPhraseApp/scripts/www_npm_install.sh

9 lines
101 B
Bash
Raw Normal View History

2021-12-04 19:39:13 -07:00
#!/bin/bash
echo "Installing node modules in www/..."
cd www
rm -rf node_modules
npm install
cd ..