From cd84b2562af84084d9e180b58ecb1cc92a954664 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Tue, 10 Nov 2020 14:48:09 +0200 Subject: [PATCH] Fixed an error with finding deployed version SHA --- app/imports/constants/VERSION.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/imports/constants/VERSION.js b/app/imports/constants/VERSION.js index 6994932c..9f17e101 100644 --- a/app/imports/constants/VERSION.js +++ b/app/imports/constants/VERSION.js @@ -1,7 +1,7 @@ const VERSION = Meteor.isClient ? 'CLIENT' : - process.env.SOURCE_VERSION || getVersionFromGit(); + process.env.CONTAINER_VERSION || getVersionFromGit(); export default VERSION;