Add semicolons
This commit is contained in:
parent
cc93729996
commit
03aad0d593
1 changed files with 3 additions and 3 deletions
|
@ -66,7 +66,7 @@ init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
clone() {
|
clone() {
|
||||||
if has_portzap_access
|
if has_portzap_access;
|
||||||
then
|
then
|
||||||
if [ -e "$transient_dir/.git" ];
|
if [ -e "$transient_dir/.git" ];
|
||||||
then
|
then
|
||||||
|
@ -82,7 +82,7 @@ clone() {
|
||||||
}
|
}
|
||||||
|
|
||||||
pull() {
|
pull() {
|
||||||
if has_portzap_access
|
if has_portzap_access;
|
||||||
then
|
then
|
||||||
if [ -e "$transient_dir/.git" ];
|
if [ -e "$transient_dir/.git" ];
|
||||||
then
|
then
|
||||||
|
@ -100,7 +100,7 @@ pull() {
|
||||||
}
|
}
|
||||||
|
|
||||||
unpack() {
|
unpack() {
|
||||||
if user_is_not_root
|
if user_is_not_root;
|
||||||
then
|
then
|
||||||
echo "The unpack command should be run as root."
|
echo "The unpack command should be run as root."
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue