From 03aad0d593272e14424d6e99badb39b93e84f0ad Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sun, 15 Jan 2023 22:39:31 -0300 Subject: [PATCH] Add semicolons --- bin/portzap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/portzap b/bin/portzap index 8946a5e..18b907f 100755 --- a/bin/portzap +++ b/bin/portzap @@ -66,7 +66,7 @@ init() { } clone() { - if has_portzap_access + if has_portzap_access; then if [ -e "$transient_dir/.git" ]; then @@ -82,7 +82,7 @@ clone() { } pull() { - if has_portzap_access + if has_portzap_access; then if [ -e "$transient_dir/.git" ]; then @@ -100,7 +100,7 @@ pull() { } unpack() { - if user_is_not_root + if user_is_not_root; then echo "The unpack command should be run as root." exit 1