From 8f3ac1d68fa8e6d7ec871d5e1b342b9666e18219 Mon Sep 17 00:00:00 2001 From: bluesbrothers2k Date: Sun, 21 Jan 2018 19:05:31 +0100 Subject: [PATCH] Update of install.sh to fully executed it "&" should put the command to the background, but instead hangs the install script and the next commands doesn't execute. As the last command is an "echo" it is not that kind of a big deal but should be corrected anyway. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f09f059..ed68540 100644 --- a/install.sh +++ b/install.sh @@ -25,5 +25,5 @@ pm2 status sudo env PATH=$PATH:`pwd`/.nvm/versions/node/v6.9.2/bin `pwd`/.nvm/versions/node/v6.9.2/lib/node_modules/pm2/bin/pm2 startup systemd -u $CURUSER --hp `pwd` sudo chown -R $CURUSER. ~/.pm2 echo "Installing pm2-logrotate in the background!" -pm2 install pm2-logrotate & +pm2 install pm2-logrotate echo "You're setup with a shiny new proxy! Now, go configure it and have fun."