diff options
author | JoelHMikael <joel.h.kronqvist@gmail.com> | 2022-02-13 13:07:01 +0200 |
---|---|---|
committer | JoelHMikael <joel.h.kronqvist@gmail.com> | 2022-02-13 13:07:01 +0200 |
commit | b500a50f1b97d93c98b36ed9a980f8188d648147 (patch) | |
tree | 02eb6b5918f74279fe43a77a5515877e04c27a38 /init.sh | |
parent | 082f9f1b428e13c7a60d588f7d215beff937ffcf (diff) | |
download | LYLLRuoka-b500a50f1b97d93c98b36ed9a980f8188d648147.tar.gz LYLLRuoka-b500a50f1b97d93c98b36ed9a980f8188d648147.zip |
Added updating the server code to README.md instructions
Diffstat (limited to 'init.sh')
-rwxr-xr-x | init.sh | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -4,10 +4,10 @@ exec 2>>/tmp/slogs echo | date echo "Init running" -cd /home/joel +cd ~ echo "Removing old packages..." -rm -r -f ./FoodJS +rm -rf ./FoodJS echo "Waiting for connection..." while [ ! "$(ping 'www.github.com' -c 1)" ] @@ -16,9 +16,8 @@ do done echo "Cloning new packages..." -# Create a deployment key and save it in the default folder without passphrase to make this work: -git clone "git@github.com:JoelHMikael/FoodJS.git" +git clone "https://github.com/JoelHMikael/FoodJS.git" echo "Starting server..." -cd /home/joel/FoodJS +cd ~/FoodJS node ./server.js |