summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-08-25 17:34:45 -0400
committerJune McEnroe <june@causal.agency>2021-08-25 17:34:45 -0400
commit08caa0a0b3da4d1dd33039ac59fb541497661671 (patch)
treedba85ab517672a0d5390a93f0ccccc30e89c21e2 /bin
parentChange liberapay link name to donate (diff)
downloadsrc-08caa0a0b3da4d1dd33039ac59fb541497661671.tar.gz
src-08caa0a0b3da4d1dd33039ac59fb541497661671.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.sh2
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"