summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgobuild.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/gobuild.sh b/gobuild.sh
index 589f30d..e233cd5 100755
--- a/gobuild.sh
+++ b/gobuild.sh
@@ -55,7 +55,12 @@ if [[ -n $3 ]]; then
fi
if $(is_os $1); then
- $1 $2
+ if [[ -z $2 ]]; then
+ $1 tint
+ $1 parse
+ else
+ $1 $2
+ fi
else
print_help
fi