소스 검색

Remove bashism from torify script

Signed-off-by: Marcus Griep <marcus@griep.us>
Marcus Griep 16 년 전
부모
커밋
b871cdf64b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      contrib/torify.in

+ 2 - 2
contrib/torify.in

@@ -52,7 +52,7 @@ then
 	shift 1
 fi
 
-if [ "$PROG" == "$TSOCKS" ]
+if [ "$PROG" = "$TSOCKS" ]
 then
 	# Define our tsocks config file
 	TSOCKS_CONF_FILE="/etc/tor/tor-tsocks.conf"
@@ -70,7 +70,7 @@ then
 		exit 1
 	fi
 fi
-if [ "$PROG" == "$TORSOCKS" ]
+if [ "$PROG" = "$TORSOCKS" ]
 then
 	exec torsocks "$@"
 fi