From 05b7ccdc04424774443223ca78795c9ad49f67c7 Mon Sep 17 00:00:00 2001 From: David Finol Date: Tue, 26 Jan 2021 12:54:07 -0600 Subject: [PATCH] Remove debug from versioning (#206) Would like to remove this debug option, as I don't like how it generates many unnecessary warnings, and I don't think it provides any value. --- 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 d3a9f3ab..463de0a3 100644 --- a/src/model/versioning.js +++ b/src/model/versioning.js @@ -228,7 +228,7 @@ export default class Versioning { * identifies the current commit. */ static async getVersionDescription() { - return this.git(['describe', '--long', '--tags', '--always', '--debug', this.sha]); + return this.git(['describe', '--long', '--tags', '--always', this.sha]); } /**