diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-07-13 21:13:51 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-07-13 21:13:51 -0400 |
commit | 867277f54303aa6a41413ab8fa8d226568bc1f4e (patch) | |
tree | d4a9fd4670ff256c0df953b032639b898e409828 | |
parent | edb995e2c961160f7e8a70ce09c35e664ffe54a7 (diff) |
[BUILD] Add option to build both by not passing second arg
-rwxr-xr-x | gobuild.sh | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |