No feature branches is perfectly OK, so exit clean with code 0.
diff --git a/git-flow-feature b/git-flow-feature
index d5f4832..663e788 100644
--- a/git-flow-feature
+++ b/git-flow-feature
@@ -163,7 +163,7 @@
 	FEATURE_BRANCHES="$(echo "$LOCAL_BRANCHES" | grep "^$PREFIX")"
 	if [ -z "$FEATURE_BRANCHES" ]; then
 		warn "No feature branches exist."
-		exit 1
+		exit 0
 	fi
 	echo "$FEATURE_BRANCHES" | sed "s?^$PREFIX??g"
 }