diff options
author | xyz <gky44px1999@gmail.com> | 2021-10-20 15:51:59 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-10-20 15:51:59 -0700 |
commit | c56c1c6d5933856aa3c26e37aea023554acd53ce (patch) | |
tree | 864d3b48f700ffe54ccd6221894d93e2747000ef /home/xyz/.local/bin/gita | |
parent | 7e90acd9c707b895c04fa981de1cd1ae83e3eeac (diff) |
refactor
Diffstat (limited to 'home/xyz/.local/bin/gita')
-rwxr-xr-x | home/xyz/.local/bin/gita | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/xyz/.local/bin/gita b/home/xyz/.local/bin/gita index a3d0dbc9..13360d0e 100755 --- a/home/xyz/.local/bin/gita +++ b/home/xyz/.local/bin/gita @@ -3,9 +3,9 @@ cmd='git' -while getopts clLsS f; do +while getopts cls f; do case $f in - c|l|L|s|S) cmd="cfg -$f";; + c|l|s) cmd="cfg -$f";; \?) exit 1;; esac done |