Skip to content

Commit b42567d

Browse files
committed
bug #1544 Remove importmap:install command from devcontainer.json (maxgrundnig)
This PR was merged into the main branch. Discussion ---------- Remove importmap:install command from devcontainer.json If it is executed as part of the updateContentCommand step, the container creation fails. importmap:install is executed by composer install though (part of the auto-scripts), which executes just fine in Codespaces. Part of #1542 Commits ------- 7271753 Remove importmap:install command from devcontainer.json
2 parents 7169fb5 + 7271753 commit b42567d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.devcontainer/devcontainer.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
"ghcr.io/shyim/devcontainers-features/symfony-cli:0": {},
55
"ghcr.io/shyim/devcontainers-features/php:0": {
66
"version": "8.2"
7-
},
7+
}
88
},
99
"updateContentCommand": {
10-
"composer install": ["composer", "install"],
11-
"importmap:install": ["symfony", "console", "importmap:install"]
10+
"composer install": ["composer", "install"]
1211
},
1312
"postAttachCommand": {
1413
"server": "symfony server:start",

0 commit comments

Comments
 (0)