diff options
author | June McEnroe <june@causal.agency> | 2021-08-25 17:34:45 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-08-25 17:34:45 -0400 |
commit | ad7bd9b40a9db1445413f30e1b6a63be8497dfa2 (patch) | |
tree | 6d8c7c11deb942e2eb8d75550c970a3abe3215ba /bin | |
parent | Change liberapay link name to donate (diff) | |
download | src-ad7bd9b40a9db1445413f30e1b6a63be8497dfa2.tar.gz src-ad7bd9b40a9db1445413f30e1b6a63be8497dfa2.zip |
Use command -v rather than type
Some shells write to standard error from type when the command is not found. command -v is silent.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/up.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/up.sh b/bin/up.sh index 3da132c1..8febee95 100644 --- a/bin/up.sh +++ b/bin/up.sh @@ -39,7 +39,7 @@ uploadHilex() { uploadScreen() { temp - if type screencapture >/dev/null; then + if command -v screencapture >/dev/null; then screencapture -i "$@" "${temp}/capture.png" else scrot -s "$@" "${temp}/capture.png" |