Skip to content

Commit 7c39440

Browse files
committed
Fix Travis by updating git tag retrieval
1 parent 7820b20 commit 7c39440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/util/git.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module.exports = {
8686
});
8787
},
8888
tagName: function(callback) {
89-
childProcess.exec('git describe --tags', {}, function(err, stdout) {
89+
childProcess.exec('git describe --tags --always', {}, function(err, stdout) {
9090
if (err) {
9191
throw new Error('git.tagName: ' + err.message);
9292
}

0 commit comments

Comments
 (0)