From f8cea8a63d50c972601a43abb1d8b79cf1348271 Mon Sep 17 00:00:00 2001
From: P. J. McDermott <pj@pehjota.net>
Date: Sun, 17 Jan 2016 10:39:08 -0500
Subject: profile_*(): Use non-exiting error()

---
diff --git a/src/profile.sh b/src/profile.sh
index 44e3022..d5ffe1e 100644
--- a/src/profile.sh
+++ b/src/profile.sh
@@ -44,7 +44,8 @@ profile_set()
 	if is_profile "${prof}"; then
 		profile="${prof}"
 	else
-		error 1 "$(get_msg 'profile_not_found')" "${prof}"
+		error "$(get_msg 'profile_not_found')" "${prof}"
+		return 1
 	fi
 
 	return 0
@@ -61,7 +62,8 @@ profile_detect()
 		fi
 	done
 
-	error 1 "$(get_msg 'profile_not_detected')" "${root}"
+	error "$(get_msg 'profile_not_detected')" "${root}"
+	return 1
 }
 
 profile_normalize_suite()
--
cgit v0.9.1