We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a419a3e commit 14a27acCopy full SHA for 14a27ac
release-commit.php
@@ -3,5 +3,7 @@
3
require __DIR__.DIRECTORY_SEPARATOR.'vendor'.DIRECTORY_SEPARATOR.'autoload.php';
4
webfiori\framework\App::initFrameworkVersionInfo();
5
echo "Creating Commit...\n";
6
-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.'"';
7
+echo $commit."\n";
8
+exec($commit);
9
echo 'Commit Created.';
0 commit comments