Forgot to remove one of the vs.

This commit is contained in:
flash 2024-12-02 00:37:46 +00:00
parent 37cbb925ad
commit 96cc58f820

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);
}