diff --git a/tools/create-tag b/tools/create-tag index b873d06..252a219 100755 --- a/tools/create-tag +++ b/tools/create-tag @@ -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); }