Fix Travis by updating git tag retrieval

This commit is contained in:
Matt Olson
2019-06-29 09:38:30 -07:00
parent 7820b207e1
commit 7c3944015d
+1 -1
View File
@@ -86,7 +86,7 @@ module.exports = {
});
},
tagName: function(callback) {
childProcess.exec('git describe --tags', {}, function(err, stdout) {
childProcess.exec('git describe --tags --always', {}, function(err, stdout) {
if (err) {
throw new Error('git.tagName: ' + err.message);
}