0.5r2 - Exit 0

This commit is contained in:
Gustavo Adolfo Mesa Roldán
2020-09-30 19:59:07 +02:00
parent a460d09a15
commit 0be7239088
5 changed files with 2 additions and 8 deletions
+2 -4
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
VERSION=0.5r1
VERSION=0.5r2
DEST=$1
shift 1
ORIG=$@
@@ -21,15 +21,12 @@ else
case $DEST in
"--help" | "-h")
help
exit 0
;;
"--check" | "-c")
check
exit 0
;;
"--install" | "-i")
install $DEST $@
exit 0
;;
*)
if [ -z "$DEST" ]
@@ -50,4 +47,5 @@ else
fi
;;
esac
exit 0
fi