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 64c8de1 commit a7a3babCopy full SHA for a7a3bab
src/Commands/UpdateVersion.php
@@ -8,8 +8,8 @@
8
class UpdateVersion extends Command
9
{
10
protected $signature = 'update:version
11
- {--T|tag= : new app version number (optional)}
12
{message? : Commit and changelog message (optional)}
+ {--T|tag= : new app version number (optional)}
13
{--deploy : Merge changes to deploy branch}';
14
protected $description = 'Updates the app version, the changelog and commit changes to git repository';
15
@@ -55,7 +55,7 @@ public function handle()
55
56
// Commit, tag and push
57
exec("git add --all");
58
- exec('git commit -a -m "$message"');
+ exec("git commit -a -m '$message'");
59
exec("git tag $newVersion");
60
exec("git push origin main --tags");
61
0 commit comments