From 8e4338c1c91d40ea5412476df9eeaed116316caa Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 20 Jan 2022 14:47:28 +0100 Subject: [PATCH] :bug: Minor fix on version parsing impl. --- common/src/app/common/version.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/version.cljc b/common/src/app/common/version.cljc index cb79885cf..348052c40 100644 --- a/common/src/app/common/version.cljc +++ b/common/src/app/common/version.cljc @@ -14,7 +14,7 @@ (defn parse [data] (cond - (= data "%version%") + (str/starts-with? data "%") {:full "develop" :branch "develop" :base "0.0.0"