Skip to content

Commit 0826579

Browse files
authored
Use users home folder as current directory when deleting service (#1046)
1 parent 3a811fb commit 0826579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/odo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ export class OdoImpl implements Odo {
940940

941941
public async deleteService(service: OpenShiftObject): Promise<OpenShiftObject> {
942942
const app = service.getParent();
943-
await this.execute(Command.deleteService(app.getParent().getName(), app.getName(), service.getName()));
943+
await this.execute(Command.deleteService(app.getParent().getName(), app.getName(), service.getName()), Platform.getUserHomePath());
944944
await this.execute(Command.waitForServiceToBeGone(app.getParent().getName(), service.getName()));
945945
this.deleteAndRefresh(service);
946946
const children = await app.getChildren();

0 commit comments

Comments
 (0)