mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-14 18:32:55 +00:00
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 <mail@floek.net>
This commit is contained in:
parent
3bb94d469d
commit
0ef4901e48
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue