Skip to content

Commit 14a27ac

Browse files
committed
Update release-commit.php
1 parent a419a3e commit 14a27ac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

release-commit.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
require __DIR__.DIRECTORY_SEPARATOR.'vendor'.DIRECTORY_SEPARATOR.'autoload.php';
44
webfiori\framework\App::initFrameworkVersionInfo();
55
echo "Creating Commit...\n";
6-
exec('git commit --allow-empty -m "chore: release '.WF_VERSION.'" -m "Release-As: '.WF_VERSION.'"');
6+
$commit = 'git commit --allow-empty -m "chore: release v'.WF_VERSION.'" -m "Release-As: v'.WF_VERSION.'"';
7+
echo $commit."\n";
8+
exec($commit);
79
echo 'Commit Created.';

0 commit comments

Comments
 (0)