bdy 1.12.10-dev-pipeline-run → 1.12.11-dev-pipeline-run
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/distTs/package.json +1 -1
- package/distTs/src/input.js +1 -1
- package/package.json +1 -1
package/distTs/package.json
CHANGED
package/distTs/src/input.js
CHANGED
|
@@ -232,7 +232,7 @@ class Input {
|
|
|
232
232
|
output_1.default.exitError(texts_1.ERR_RUN_PIPELINE_WRONG_PRIORITY);
|
|
233
233
|
}
|
|
234
234
|
static pipelineRunAction(actions) {
|
|
235
|
-
if (!actions.length)
|
|
235
|
+
if (!actions || !actions.length)
|
|
236
236
|
return null;
|
|
237
237
|
const list = [];
|
|
238
238
|
actions.forEach((str) => {
|