From 867277f54303aa6a41413ab8fa8d226568bc1f4e Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Wed, 13 Jul 2022 21:13:51 -0400 Subject: [BUILD] Add option to build both by not passing second arg --- gobuild.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3