(params: WorkspaceInitParams)
| 86 | } |
| 87 | |
| 88 | async initWorkspace(params: WorkspaceInitParams): Promise<WorkspaceInitResult> { |
| 89 | return runWorkspaceInitHook({ |
| 90 | params, |
| 91 | runtimeType: "local", |
| 92 | hookCheckPath: params.projectPath, |
| 93 | runHook: async ({ muxEnv, initLogger, abortSignal }) => { |
| 94 | await this.runInitHook(params.workspacePath, muxEnv, initLogger, abortSignal); |
| 95 | }, |
| 96 | }); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Renaming is a no-op for LocalRuntime - the workspace path is always the project directory. |
nothing calls this directly
no test coverage detected