Forgot to remove one of the vs.
This commit is contained in:
parent
51981a3aef
commit
b76e7ab264
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ $workingDir = getcwd();
|
||||||
try {
|
try {
|
||||||
chdir(dirname($path));
|
chdir(dirname($path));
|
||||||
echo shell_exec(sprintf('git tag %s', $version));
|
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 {
|
} finally {
|
||||||
chdir($workingDir);
|
chdir($workingDir);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue