Skip to content

Commit

Permalink
Unix-File Changed
Browse files Browse the repository at this point in the history
Signed-off-by: Likhitha Nimma <[email protected]>
  • Loading branch information
likhithanimma1 committed Dec 19, 2023
1 parent 925fc8b commit 8bb365c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zowe-explorer/src/command/UnixCommandHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export class UnixCommandHandler extends ZoweCommandProvider {
const prof = profileInfo.mergeArgsForProfile(sshProfile.profile as imperative.IProfAttrs);
params.forEach((p) => {
const obj = prof.knownArgs.find((a) => a.argName === p);
if (obj.secure === false) {
if (obj.argValue) {
sshProfile.profile[p] = obj.argValue;
} else {
sshProfile.profile[p] = profileInfo.loadSecureArg(obj);

Check warning on line 260 in packages/zowe-explorer/src/command/UnixCommandHandler.ts

View check run for this annotation

Codecov / codecov/patch

packages/zowe-explorer/src/command/UnixCommandHandler.ts#L259-L260

Added lines #L259 - L260 were not covered by tests
Expand Down

0 comments on commit 8bb365c

Please sign in to comment.