Skip to content

Commit 8ef0412

Browse files
committed
chore: make workspace ID required when deleting workspaces
Signed-off-by: Donnie Adams <[email protected]>
1 parent b42172c commit 8ef0412

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/gptscript.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -473,10 +473,11 @@ export class GPTScript {
473473
return out.trim()
474474
}
475475

476-
async deleteWorkspace(workspaceID?: string): Promise<void> {
476+
async deleteWorkspace(workspaceID: string): Promise<void> {
477477
if (!workspaceID) {
478-
workspaceID = process.env.GPTSCRIPT_WORKSPACE_ID ?? ""
478+
return Promise.reject("workspace ID cannot be empty")
479479
}
480+
480481
await this.runBasicCommand("workspaces/delete", {
481482
id: workspaceID,
482483
workspaceTool: this.opts.WorkspaceTool,

0 commit comments

Comments
 (0)