Skip to content

Commit

Permalink
Fix this in this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkatz committed Oct 24, 2022
1 parent 7189ef2 commit be91f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { exec } = require('child_process');
const fs = require('fs');

exec(`git for-each-ref --sort=-taggerdate --count 1 --format="%(refname:short)" "refs/tags/*"`, (err, tag, stderr) => {
exec(`git for-each-ref --sort=-creatordate --count 1 --format="%(refname:short)" "refs/tags/*"`, (err, tag, stderr) => {
tag = tag.trim();

if (err) {
Expand Down

0 comments on commit be91f9f

Please sign in to comment.