Skip to content

Commit

Permalink
linting warnings
Browse files Browse the repository at this point in the history
Signed-off-by: jace-roell <[email protected]>
  • Loading branch information
jace-roell committed Dec 18, 2024
1 parent 8120332 commit e2f465c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions file.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const { ProfileInfo } = require("@zowe/imperative");
(async () => {
const profInfo = new ProfileInfo("zowe");
await profInfo.readProfilesFromDisk();
const upd = { profileName: "lpar1.test", profileType: "zosmf" };
await profInfo.updateProperty({ ...upd, property: "user", value: "abc", setSecure: false });
await profInfo.updateProperty({ ...upd, property: "password", value: "aa", setSecure: false });
})();

0 comments on commit e2f465c

Please sign in to comment.