diff options
author | Joel Kronqvist <work.joelkronqvist@pm.me> | 2022-05-13 15:47:50 +0300 |
---|---|---|
committer | Joel Kronqvist <work.joelkronqvist@pm.me> | 2022-05-13 15:47:50 +0300 |
commit | 95719c45251edab1af535d963065384ed20cadf5 (patch) | |
tree | 2d30d284fc40de902f4c126c9667383903dde014 /init.sh | |
parent | 94d4ec42b52252a4956e633074e92ebfdd49f596 (diff) | |
download | LYLLRuoka-95719c45251edab1af535d963065384ed20cadf5.tar.gz LYLLRuoka-95719c45251edab1af535d963065384ed20cadf5.zip |
Lol I just need to upload these changes to not loose them while testing
Diffstat (limited to 'init.sh')
-rwxr-xr-x | init.sh | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,7 +5,9 @@ echo | date echo "Init running" echo "Removing old packages..." -rm -rf $PATH_TO_LYLLRUOKA +rm -rf "${PATH_TO_LYLLRUOKA%%FoodJS}" + +cd "${PATH_TO_LYLLRUOKA%%FoodJS}" echo "Waiting for connection..." while [ ! "$(ping 'www.github.com' -c 1)" ] @@ -16,6 +18,6 @@ done echo "Cloning new packages..." git clone "https://github.com/JoelHMikael/FoodJS.git" -echo "Starting server..." cd $PATH_TO_LYLLRUOKA +echo "Starting server..." node server.js |