diff --git a/release-commit.php b/release-commit.php index b17b1cc7..3cb8f8f0 100644 --- a/release-commit.php +++ b/release-commit.php @@ -3,5 +3,7 @@ require __DIR__.DIRECTORY_SEPARATOR.'vendor'.DIRECTORY_SEPARATOR.'autoload.php'; webfiori\framework\App::initFrameworkVersionInfo(); echo "Creating Commit...\n"; -exec('git commit --allow-empty -m "chore: release '.WF_VERSION.'" -m "Release-As: '.WF_VERSION.'"'); +$commit = 'git commit --allow-empty -m "chore: release v'.WF_VERSION.'" -m "Release-As: v'.WF_VERSION.'"'; +echo $commit."\n"; +exec($commit); echo 'Commit Created.'; \ No newline at end of file