From 6070cfef6edc359fcc1cc8bf8d0631cce6c5bde9 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sat, 14 Sep 2024 03:44:30 -0300 Subject: [PATCH] Fix wonky indentation --- libexec/portzap/commands/portzap-rm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/libexec/portzap/commands/portzap-rm b/libexec/portzap/commands/portzap-rm index 18f179e..5605a06 100755 --- a/libexec/portzap/commands/portzap-rm +++ b/libexec/portzap/commands/portzap-rm @@ -42,21 +42,21 @@ printf "1-4: " while true; do read -r r if [ "${r}" = "1" ]; then - erase "${repodir}" - printok "remove complete" + erase "${repodir}" + printok "remove complete" elif [ "${r}" = "2" ]; then - erase "${installdir}" - printok "remove complete" + erase "${installdir}" + printok "remove complete" elif [ "${r}" = "3" ]; then - erase "${repodir}" - erase "${installdir}" - printok "remove complete" + erase "${repodir}" + erase "${installdir}" + printok "remove complete" elif [ "${r}" = "4" ]; then - break + break else - printf "%s is not a valid option\n" "${r}" - printf "1-4: " - continue + printf "%s is not a valid option\n" "${r}" + printf "1-4: " + continue fi exit done