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.
This commit is contained in:
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

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