From 3e1fce6c19e5f63c4ec6a50ba987afbaf53c7348 Mon Sep 17 00:00:00 2001 From: Christopher Sasarak Date: Fri, 28 Jul 2023 15:17:13 -0500 Subject: [PATCH] Test code so we can compile with a non-version tag --- src/App/Version.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App/Version.hs b/src/App/Version.hs index bab631b446..ddb54afffa 100644 --- a/src/App/Version.hs +++ b/src/App/Version.hs @@ -17,7 +17,8 @@ import GitHash (GitInfo, giBranch, giDirty, giHash, tGitInfoCwdTry) import System.Info (compilerName, compilerVersion) versionNumber :: Maybe Text -versionNumber = $$(getCurrentTag) +-- This is just for testing, revert before merging +versionNumber = Just "v0.0.0" -- $$(getCurrentTag) info :: Either String GitInfo info = $$(tGitInfoCwdTry)