18 lines
276 B
Bash
Executable File
18 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cd "$(dirname "$0")"
|
|
|
|
for var in "$@"
|
|
do
|
|
if [[ $var == --reset ]] ; then
|
|
echo "Performing a full reset..."
|
|
rm -rf node_modules
|
|
fi
|
|
done
|
|
|
|
if [ ! -d ./node_modules ] ; then
|
|
npm install
|
|
fi
|
|
|
|
sudo systemctl stop bbb-graphql-actions
|
|
npm start
|