Skip to content

Commit

Permalink
fix (dev): devcontainer.json cannot assume /workspaces/enola/ but mus…
Browse files Browse the repository at this point in the history
…t use relative path (re. #1038)
  • Loading branch information
vorburger committed Feb 6, 2025
1 parent dc6e2b1 commit a34ac75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// https://containers.dev/implementors/json_reference/#lifecycle-scripts
// is what you want, NOT features' "ghcr.io/devcontainers-contrib/features/bash-command:1"
// (because that doesn't seem to have access to the workspace, whereas this does)
"onCreateCommand": "/workspaces/enola/tools/devcontainer/install.bash",
"onCreateCommand": "pwd && ls && tools/devcontainer/install.bash",

// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
Expand Down

0 comments on commit a34ac75

Please sign in to comment.