From 0159028bb1d4664b54244815ee6f49139e6c07f6 Mon Sep 17 00:00:00 2001 From: Webber Date: Thu, 21 May 2020 20:44:28 +0200 Subject: [PATCH] Fix missing await --- src/model/versioning.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/versioning.js b/src/model/versioning.js index e3293c99..8bbb4528 100644 --- a/src/model/versioning.js +++ b/src/model/versioning.js @@ -162,7 +162,7 @@ export default class Versioning { * identifies the current commit. */ static async getVersionDescription() { - const commitIsh = this.getTag() || `origin/${this.branch}`; + const commitIsh = (await this.getTag()) || `origin/${this.branch}`; return this.git(['describe', '--long', '--tags', '--always', '--debug', commitIsh]); }