-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/next' into update-next-with-master
Signed-off-by: Andrew W. Harn <[email protected]>
- Loading branch information
Showing
197 changed files
with
5,284 additions
and
6,815 deletions.
There are no files selected for viewing
9 changes: 0 additions & 9 deletions
9
__tests__/__integration__/__scripts__/imperative_ssh_create_profile.sh
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
__tests__/__integration__/__scripts__/imperative_ssh_delete_profile.sh
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
__tests__/__integration__/__scripts__/imperative_tso_create_profile.sh
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
__tests__/__integration__/__scripts__/imperative_tso_delete_profile.sh
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
__tests__/__integration__/__scripts__/imperative_zosmf_create_profile.sh
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
__tests__/__integration__/__scripts__/imperative_zosmf_delete_profile.sh
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
__tests__/__integration__/__snapshots__/imperative.secure.integration.test.ts.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
164 changes: 0 additions & 164 deletions
164
__tests__/__integration__/imperative.integration.subtest.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
# function to exit if we encounter a bad return code | ||
exitOnFailure () { | ||
failureMsg=${1:?"First parm (failureMsg) is required."} | ||
actualExitCode=${2:?"Second parm (actualExitCode) is required."} | ||
goodExitCode=${3:-0} | ||
if [ $actualExitCode != $goodExitCode ]; then | ||
echo `basename $0`": $failureMsg" 1>&2 | ||
exit $actualExitCode | ||
fi | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.