diff options
-rwxr-xr-x | bin/sqlwait | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sqlwait b/bin/sqlwait index 6ba406e..6d472a9 100755 --- a/bin/sqlwait +++ b/bin/sqlwait @@ -86,7 +86,7 @@ while true; do fi if [ "$COMPARE_TYPE" = "eq" ]; then - if [ "$RESULT" = "$$TARGET" ]; then + if [ "$RESULT" = "$TARGET" ]; then if [ "$PRINT_FLAG" = true ]; then echo "[$(date)]: Target reached $RESULT = $TARGET" fi |