Skip to content

Commit

Permalink
Merge pull request #2221 from zowe/fail-on-error-behavior
Browse files Browse the repository at this point in the history
[v1] Fail on error behavior
  • Loading branch information
awharn authored Aug 13, 2024
2 parents 6cea676 + 7261260 commit 32408ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/imperative/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Imperative package will be documented in this file.

## Recent Changes

- BugFix: modified `plugins validate` command to default to fail when an error occurs. `zowe plugins validate <plugin-name>` command now behaves as the command `zowe plugins validate <plugin-name> --fail-on-error` [#2221](https://github.com/zowe/zowe-cli/pull/2221)

## `4.18.25`

- BugFix: Fixed error in REST client that when using stream could cause small data sets to download with incomplete contents. [#744](https://github.com/zowe/zowe-cli/issues/744)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const validateDefinition: ICommandDefinition = {
type: "boolean",
description: "Enables throwing an error and setting an error code if plugin validation detects an error",
required: false,
defaultValue: false
defaultValue: true
},
{
name: "fail-on-warning",
Expand Down

0 comments on commit 32408ff

Please sign in to comment.