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
parent
c7c1841c97
commit
05b7ccdc04
|
@ -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]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue