Fix missing await

pull/92/head
Webber 2020-05-21 20:44:28 +02:00
parent 8901b218a8
commit 3bad1deee9
1 changed files with 1 additions and 1 deletions

View File

@ -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]);
}