You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Commands/ArtifactCommand.php
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ class ArtifactCommand extends Command {
43
43
protectedstring$sourceDir = '';
44
44
45
45
/**
46
-
* Mode in which current build is going to run.
46
+
* Mode in which artifact packaging is going to run.
47
47
*
48
48
* Available modes: branch, force-push.
49
49
*/
@@ -92,7 +92,7 @@ class ArtifactCommand extends Command {
92
92
protectedbool$isDryRun = FALSE;
93
93
94
94
/**
95
-
* Flag to specify if cleanup is required to run after the build.
95
+
* Flag to specify if cleanup is required to run after packaging.
96
96
*/
97
97
protectedbool$needCleanup = TRUE;
98
98
@@ -102,7 +102,7 @@ class ArtifactCommand extends Command {
102
102
protectedstring$logFile = '';
103
103
104
104
/**
105
-
* Flag to show changes made to the repo by the build in the output.
105
+
* Flag to show changes made to the repo during packaging in the output.
106
106
*/
107
107
protectedbool$showChanges = FALSE;
108
108
@@ -168,12 +168,12 @@ protected function configure(): void {
168
168
->addOption('dry-run', NULL, InputOption::VALUE_NONE, 'Run without pushing to the remote repository.')
169
169
->addOption('gitignore', NULL, InputOption::VALUE_REQUIRED, 'Path to gitignore file to replace current .gitignore. Leave empty to use current .gitignore.')
170
170
->addOption('message', NULL, InputOption::VALUE_REQUIRED, 'Commit message with optional tokens.', 'Deployment commit')
171
-
->addOption('mode', NULL, InputOption::VALUE_REQUIRED, 'Mode of artifact build: branch, force-push. Defaults to force-push.', static::MODE_FORCE_PUSH)
171
+
->addOption('mode', NULL, InputOption::VALUE_REQUIRED, 'Mode of artifact packaging: branch, force-push. Defaults to force-push.', static::MODE_FORCE_PUSH)
172
172
->addOption('no-cleanup', NULL, InputOption::VALUE_NONE, 'Do not cleanup after run.')
173
173
->addOption('now', NULL, InputOption::VALUE_REQUIRED, 'Internal value used to set internal time.')
174
174
->addOption('log', NULL, InputOption::VALUE_REQUIRED, 'Path to the log file.')
175
175
->addOption('root', NULL, InputOption::VALUE_REQUIRED, 'Path to the root for file path resolution. If not specified, current directory is used.')
176
-
->addOption('show-changes', NULL, InputOption::VALUE_NONE, 'Show changes made to the repo by the build in the output.')
176
+
->addOption('show-changes', NULL, InputOption::VALUE_NONE, 'Show changes made to the repo during packaging in the output.')
177
177
->addOption('src', NULL, InputOption::VALUE_REQUIRED, 'Directory where source repository is located. If not specified, root directory is used.')
178
178
->addOption('fail-on-missing-branch', NULL, InputOption::VALUE_NONE, 'Fail artifact packaging if source branch cannot be determined. By default, artifact packaging is skipped gracefully.');
0 commit comments