Browse Source

Fix is_pid_runned func

Vova Tkach 6 years ago
parent
commit
db5793c719
1 changed files with 1 additions and 1 deletions
  1. 1 1
      funcs.sh

+ 1 - 1
funcs.sh

@@ -28,7 +28,7 @@ get_util() {
 }
 
 is_pid_runned() {
-	resp=`ps aux | grep ".sh start" | grep $1`
+	resp=`ps aux | grep "start" | grep $1`
 	if [ "$resp" != "" ]; then
 		eval "$2='1'"
 	else