Paul Klumpp 12 rokov pred
rodič
commit
15d45c172c
1 zmenil súbory, kde vykonal 8 pridanie a 8 odobranie
  1. 8 8
      is_cimsqwbot.sh

+ 8 - 8
is_cimsqwbot.sh

@@ -53,26 +53,26 @@ if [ "$INSTALL" == "1" ]; then
 #!/bin/sh
 
 		BOTPATH="\$pwd"
-		LIBPATH="$BOTPATH/../libqwclient/"
-		if [ "`which realpath`" != "" ]; then
-			LIBPATH="$(realpath $LIBPATH)"
+		LIBPATH="\$BOTPATH/../libqwclient/"
+		if [ "\$(which realpath)" != "" ]; then
+			LIBPATH="\$(realpath \$LIBPATH)"
 		fi
-		echo BOTPATH: "$BOTPATH"
-		echo LIBPATH: "$LIBPATH"
+		echo BOTPATH: "\$BOTPATH"
+		echo LIBPATH: "\$LIBPATH"
 
 		while [ 1 ]; do
-			cd "$LIBPATH"
+			cd "\$LIBPATH"
 			git pull
 			qmake
 			make
 
-			cd "$BOTPATH"
+			cd "\$BOTPATH"
 			git pull
 			qmake
 			make
 
 			echo started at \$(date) >> runlog.log
-			LD_LIBRARY_PATH=$LIBPATH stdbuf -oL ./cimsqwbot | tee -a runlog.log
+			LD_LIBRARY_PATH=\$LIBPATH stdbuf -oL ./cimsqwbot | tee -a runlog.log
 			echo crashed at \$(date) - lol, we never crash. >> runlog.log
 
 			sleep 3