We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a2c6d commit 3c9d88aCopy full SHA for 3c9d88a
install.sh
@@ -301,7 +301,9 @@ for ((i = 0; i < ${#SETUP_CMDS[@]}; i++)); do
301
if [[ "$CMD" == *"raspi-config"* ]] || [[ "$CMD" == *"$CONFIG_DIR/$CONFIG_FILE"* ]] || [[ "$CMD" == *"\$CONFIG_DIR/\$CONFIG_FILE"* ]]; then
302
do_config_backup
303
fi
304
- printf "\"%s\"\n" "$CMD"
+ if [[ ! "$CMD" == printf* ]]; then
305
+ printf "Running: \"%s\"\n" "$CMD"
306
+ fi
307
eval "$CMD"
308
check_for_error
309
done
0 commit comments