aboutsummaryrefslogtreecommitdiffstats
path: root/common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'common.sh')
-rwxr-xr-xcommon.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/common.sh b/common.sh
index 60b937c..3efd06f 100755
--- a/common.sh
+++ b/common.sh
@@ -25,6 +25,15 @@ is_replicant_11()
match_replicant_version '^11-'
}
+is_transition_release()
+{
+ if echo "${RELEASE}" | grep '\-transition$' > /dev/null ; then
+ true
+ else
+ false
+ fi
+}
+
match_replicant_version()
{
regex="$1"