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.
pull/208/head
David Finol 2021-01-26 12:54:07 -06:00 committed by GitHub
parent c7c1841c97
commit 05b7ccdc04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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