Forgot to remove one of the vs.

This commit is contained in:
Pachira 2024-12-02 00:37:46 +00:00
parent 51981a3aef
commit b76e7ab264

View file

@ -22,7 +22,7 @@ $workingDir = getcwd();
try {
chdir(dirname($path));
echo shell_exec(sprintf('git tag %s', $version));
echo shell_exec(sprintf('git push origin v%s', $version));
echo shell_exec(sprintf('git push origin %s', $version));
} finally {
chdir($workingDir);
}