diff options
| author | June McEnroe <june@causal.agency> | 2019-02-24 14:45:32 -0500 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2019-02-24 14:45:32 -0500 |
| commit | cec7c08093375e4751478ac9f48f615d726f49d0 (patch) | |
| tree | 9a7c91be1a4b2d9c2d44dd7f18e2db182fb07c1c | |
| parent | Add setopt (diff) | |
| download | src-cec7c08093375e4751478ac9f48f615d726f49d0.tar.gz src-cec7c08093375e4751478ac9f48f615d726f49d0.zip | |
Use setopt in up
Diffstat (limited to '')
| -rw-r--r-- | bin/up.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/up.sh b/bin/up.sh index 36febe7f..07a0b76b 100644 --- a/bin/up.sh +++ b/bin/up.sh @@ -38,8 +38,8 @@ uploadScreen() { upload "${temp}/capture.png" } -args=$(getopt 'hs' $*) -set -- $args +args=$(setopt 'hs' "$@") +eval set -- "$args" for opt; do case "$opt" in (-h) shift; fn=uploadHi;; |