From 741a02057938e5e3972de5abdf2d24fb7965cc70 Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn Date: Sat, 26 Jun 2021 00:29:45 -0700 Subject: [PATCH] add missing semicolon --- frontend/generate-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/generate-config.js b/frontend/generate-config.js index 023198f27..fa856dd7d 100644 --- a/frontend/generate-config.js +++ b/frontend/generate-config.js @@ -37,7 +37,7 @@ for (setting in configContent) { } if (process.env.DOCKER_COMMIT_HASH) { - gitCommitHash = process.env.DOCKER_COMMIT_HASH + gitCommitHash = process.env.DOCKER_COMMIT_HASH; } else { try { const gitRevParse = spawnSync('git', ['rev-parse', '--short', 'HEAD']);