Forráskód Böngészése

tweaks to status messages

Kyle P Davis 10 éve
szülő
commit
34cdd3c48b
1 módosított fájl, 3 hozzáadás és 3 törlés
  1. 3 3
      gimme

+ 3 - 3
gimme

@@ -72,7 +72,7 @@ else # normal usage
 
 	for GIMME; do
 
-		echo "# WANT: gimme $GIMME"
+		echo "# WANT: $GIMME"
 		! [[ "$GIMMES" == *" $GIMME "* ]]  ||  exit 0
 		export GIMMES+=" $GIMME " GIMME
 
@@ -96,14 +96,14 @@ else # normal usage
 		if [[ -x "$P" ]]; then
 			[[ "$PATH" = "$LINK_DIR"* ]]  ||  export PATH="$LINK_DIR:$PATH"
 			if "$P" | sed "s/^/  /"; then
-				echo "# DONE: gimme $GIMME"
+				echo "# DONE: $GIMME"
 			else
 				OUCH=$?
 				echo "# FAIL: Error for gimme \"$GIMME\" (EXIT_CODE=$OUCH)"
 				exit $OUCH
 			fi
 		else
-			echo "# WARN: gimme $GIMME was SKIPPED because $P is not marked executable!"
+			echo "# WARN: the gimme \"$GIMME\" was SKIPPED because \"$P\" is not marked executable!"
 		fi
 
 	done