summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2016-01-17 09:41:10 (EST)
committer P. J. McDermott <pj@pehjota.net>2016-01-17 09:41:10 (EST)
commitcd6859f9bd4767dcfb96bab57b55c2f6edef8d39 (patch)
treef2e24b9a4505a4d30efbaa14c5f597471be47fd3
parent3fac031790b2671d98b2f6fa4e01cef9da07a92a (diff)
run_cmd(): Switch to non-exiting error()
-rw-r--r--src/cmd.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd.sh b/src/cmd.sh
index 82c5ce5..9afad7c 100644
--- a/src/cmd.sh
+++ b/src/cmd.sh
@@ -117,6 +117,7 @@ run_cmd()
running_cmd=''
running_cmd_clean=''
else
- error 1 "$(get_msg 'cmd_not_found')" "${cmd}"
+ error "$(get_msg 'cmd_not_found')" "${cmd}"
+ return 1
fi
}