Don't wrap $? in quotes

This commit is contained in:
2013-06-28 13:56:38 +02:00
parent 73f2f9f31b
commit 5e83091579
2 changed files with 2 additions and 2 deletions

View File

@@ -108,4 +108,4 @@ case "$command" in
;;
esac
exit "$?"
exit $?

View File

@@ -6,5 +6,5 @@ dotify-install() {
if [ -z "$target" ]; then return 1; fi
parse-dotfile "$dotfile" "$target"
return "$?"
return $?
}