Skip to content

Commit

Permalink
consistent error message formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
James Barnett committed Nov 12, 2016
1 parent e2ab77b commit 0974675
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/snap-sync
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ while [[ $# -gt 0 ]]; do
exit 1
;;
*)
printf "Error: Unknown option: $key\n"
printf "ERROR: Unknown option: $key\n"
printf "Run 'snap-sync -h' for valid options.\n"
exit 1
;;
Expand Down Expand Up @@ -132,7 +132,7 @@ for x in $selected_configs; do
if [[ -f "/etc/snapper/configs/$x" ]]; then
source /etc/snapper/configs/$x
else
printf "Error: Selected snapper configuration $x does not exist.\n"
printf "ERROR: Selected snapper configuration $x does not exist.\n"
exit 1
fi

Expand Down

0 comments on commit 0974675

Please sign in to comment.