aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/remembering.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/remembering.sh b/src/remembering.sh
index 4b36d3e..f0219c1 100755
--- a/src/remembering.sh
+++ b/src/remembering.sh
@@ -22,7 +22,7 @@ version() {
}
missing() {
- printf 'Missing option: %s\n' "$1" >&2
+ printf 'Missing option: %s\n' "$1"
}
# shellcheck disable=2068
@@ -63,13 +63,13 @@ while getopts 'hc:p:V' name; do
done
if [ -z "$COMMANDFLAG" ]; then
- missing '-c "COMMAND"'
+ missing '-c "COMMAND"' >&2
usage >&2
exit 2
fi
if [ -z "$PROFILEFLAG" ]; then
- missing '-p PROFILE'
+ missing '-p PROFILE' >&2
usage >&2
exit 2
fi