FixPhraseApp/scripts/www_npm_install.sh
2021-12-04 19:39:13 -07:00

9 lines
101 B
Bash
Executable File

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