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
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -107,17 +107,17 @@ class ArtifactCommand extends Command {
107
107
protectedbool$showChanges = FALSE;
108
108
109
109
/**
110
-
* Flag to fail deployment when branch is missing.
110
+
* Flag to fail artifact packaging when branch is missing.
111
111
*
112
-
* By default (false), deployment is skipped with exit code 0.
113
-
* When true, deployment fails with exit code 1.
112
+
* By default (false), artifact packaging is skipped with exit code 0.
113
+
* When true, artifact packaging fails with exit code 1.
114
114
*/
115
115
protectedbool$failOnMissingBranch = FALSE;
116
116
117
117
/**
118
-
* Flag indicating deployment was skipped due to missing branch.
118
+
* Flag indicating artifact packaging was skipped due to missing branch.
119
119
*/
120
-
protectedbool$deploymentSkipped = FALSE;
120
+
protectedbool$packagingSkipped = FALSE;
121
121
122
122
/**
123
123
* Flag to specify if push was successful.
@@ -175,7 +175,7 @@ protected function configure(): void {
175
175
->addOption('root', NULL, InputOption::VALUE_REQUIRED, 'Path to the root for file path resolution. If not specified, current directory is used.')
176
176
->addOption('show-changes', NULL, InputOption::VALUE_NONE, 'Show changes made to the repo by the build 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
-
->addOption('fail-on-missing-branch', NULL, InputOption::VALUE_NONE, 'Fail deployment if source branch cannot be determined. By default, deployment is skipped gracefully.');
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