Add warn() function and redefine die() in terms of warn.
diff --git a/gitflow-sh-setup b/gitflow-sh-setup
index 3c1f908..7fbef51 100755
--- a/gitflow-sh-setup
+++ b/gitflow-sh-setup
@@ -20,10 +20,8 @@
 REMOTE_BRANCHES=$(cd "$GIT_DIR/refs/remotes"; find * -type f)
 ALL_BRANCHES="$LOCAL_BRANCHES\n$REMOTE_BRANCHES"
 
-die() {
-	echo "$@" >&2
-	exit 1
-}
+warn() { echo "$@" >&2; }
+die() { warn "$@"; exit 1; }
 
 gitflow_check_clean_working_tree() {
 	# TODO: Implement this