Add semicolons

This commit is contained in:
0x1eef 2023-01-15 22:39:31 -03:00
parent cc93729996
commit 03aad0d593

View file

@ -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