Skip to content

Commit

Permalink
update readme + remove quotes from deleteDs APIs
Browse files Browse the repository at this point in the history
Signed-off-by: zFernand0 <[email protected]>
  • Loading branch information
zFernand0 committed Mar 11, 2024
1 parent 37b4f9b commit 0534f8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This plug-in uses the [zos-node-accessor package](https://github.com/IBM/zos-nod

You can use the plug-in to perform various tasks:

* List, view, rename, or download a z/OS data set, partitioned dataset members or USS file.
* List, view, rename, or download a z/OS data set, partitioned data set members or USS file.
* Upload a local file or the standard input (stdin) to a z/OS data set or USS file.
* List, view or download a job status and job spool files.
* Delete z/OS data sets, USS files, or jobs.
Expand Down Expand Up @@ -87,7 +87,7 @@ Before you install the plug-in, meet the following requirements:
## Creating a user profile
After you install the plug-in, create an FTP profile. An FTP profile is recommended to issue commands to via FTP. FTP profiles contain your host, port, user name, and password for connect to z/OS using FTP. You can create multiple profiles and switch between them as needed.
After you install the plug-in, create an FTP profile. An FTP profile is recommended to issue commands via FTP. FTP profiles contain your host, port, user name, and password to connect to z/OS using FTP. You can create multiple profiles and switch between them as needed.
**Follow these steps:**
1. Install the z/OS FTP Plug-in for Zowe CLI
Expand Down
2 changes: 1 addition & 1 deletion src/api/DataSetUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class DataSetUtils {
*/
public static async deleteDataSet(connection: ZosAccessor, dsn: string): Promise<void> {
this.log.debug("Deleting data set '%s'", dsn);
await connection.deleteDataset("'" + dsn + "'");
await connection.deleteDataset(dsn);
}

/**
Expand Down

0 comments on commit 0534f8b

Please sign in to comment.