From 0ef4901e4859c500464092baf0abebe7387e9955 Mon Sep 17 00:00:00 2001 From: Florian Freund Date: Tue, 25 Dec 2018 09:02:12 +0100 Subject: [PATCH] Add a blank after printf to avoid 'Command not found' error > curl -L https://install.pi-hole.net | bash /dev/stdin --i_do_not_follow_recommendations ... /dev/stdin: Zeile 2449: printf %b Skipping free disk space verification\n: Command not found. Signed-off-by: Florian Freund --- automated install/basic-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index c0d32274..a888233c 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -2460,7 +2460,7 @@ main() { # Start the installer # Verify there is enough disk space for the install if [[ "${skipSpaceCheck}" == true ]]; then - printf" %b Skipping free disk space verification\\n" "${INFO}" + printf " %b Skipping free disk space verification\\n" "${INFO}" else verifyFreeDiskSpace fi