Skip to content

Commit a90d058

Browse files
committed
Update concat-map dependency version to 0.0.1 and adjust project directory names in Dockerfile and getExtensionUri.ts
1 parent 787f18d commit a90d058

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

project.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM zenmldocker/zenml-codespace:${ZENML_VERSION}
77
ARG PROJECT_DIR_NAME
88

99
# Set the working directory for the project
10-
WORKDIR /home/coder/extensions/zenml.zenml-codespace-tutorial-0.0.2/pipelines
10+
WORKDIR /home/coder/extensions/zenml-io.zenml-codespace-tutorial-0.0.2/pipelines
1111

1212
# Copy the specific project's requirements file
1313
COPY ./${PROJECT_DIR_NAME}/requirements.txt /tmp/requirements.txt

src/utils/getExtensionUri.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ export default function getExtensionUri(context: vscode.ExtensionContext) {
99
if (isTutorialEnabled) {
1010
// Use the codespace container extension path when tutorial is enabled
1111
return vscode.Uri.file(
12-
"/home/coder/extensions/zenml.zenml-codespace-tutorial-0.0.2"
12+
"/home/coder/extensions/zenml-io.zenml-codespace-tutorial-0.0.2"
1313
);
1414
} else {
1515
// Use the original logic for other environments
1616
return vscode.Uri.file(
1717
`/root/${
1818
isCodespace ? ".vscode-remote" : ".vscode-server"
19-
}/extensions/zenml.zenml-codespace-tutorial-0.0.2`
19+
}/extensions/zenml-io.zenml-codespace-tutorial-0.0.2`
2020
);
2121
}
2222
} else {

0 commit comments

Comments
 (0)