updated install script

This commit is contained in:
2022-01-31 13:56:39 -06:00
parent d7adc4afde
commit 7ae2cb8db0
3 changed files with 28 additions and 4 deletions

View File

@@ -5,4 +5,14 @@ cd -- "$( dirname -- "${BASH_SOURCE[0]}" )"
cd ../..
#run
npm install
npm install
#discord token
[ ! -f "token" ] && touch "token"
if [ ! -s "token" ]
then
printf "Enter your discord bot token: "
read token
printf $token > "token"
fi