Browse Source

Logging: consistently use $ for env vars

teor 5 years ago
parent
commit
e34ceea791
1 changed files with 4 additions and 4 deletions
  1. 4 4
      tools/test-network.sh

+ 4 - 4
tools/test-network.sh

@@ -293,17 +293,17 @@ else
     if [ -x "$CHUTNEY_TOR" ]; then
         $ECHO "$myname: Assuming \$CHUTNEY_TOR is a path to a binary"
     elif [ ! -z "$CHUTNEY_TOR" ]; then
-        $ECHO "$myname: Assuming \$CHUTNEY_TOR is a binary name in PATH"
+        $ECHO "$myname: Assuming \$CHUTNEY_TOR is a binary name in \$PATH"
     else
-        $ECHO "$myname: Setting \$CHUTNEY_TOR to the standard binary name in PATH"
+        $ECHO "$myname: Setting \$CHUTNEY_TOR to the standard binary name in \$PATH"
         export CHUTNEY_TOR="$tor_name"
     fi
     if [ -x "$CHUTNEY_TOR_GENCERT" ]; then
         $ECHO "$myname: Assuming \$CHUTNEY_TOR_GENCERT is a path to a binary"
     elif [ ! -z "$CHUTNEY_TOR_GENCERT" ]; then
-        $ECHO "$myname: Assuming \$CHUTNEY_TOR_GENCERT is a binary name in PATH"
+        $ECHO "$myname: Assuming \$CHUTNEY_TOR_GENCERT is a binary name in \$PATH"
     else
-        $ECHO "$myname: Setting \$CHUTNEY_TOR_GENCERT to the standard binary name in PATH"
+        $ECHO "$myname: Setting \$CHUTNEY_TOR_GENCERT to the standard binary name in \$PATH"
         export CHUTNEY_TOR_GENCERT="$tor_gencert_name"
     fi
 fi