From 14a27acd3954f660d9e12b8160d83934bb20e03b Mon Sep 17 00:00:00 2001 From: Ibrahim Date: Mon, 16 Dec 2024 15:00:19 +0300 Subject: [PATCH] Update release-commit.php --- release-commit.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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