Skip to content

Commit 9065049

Browse files
committed
List npm global directories and check installation
1 parent 5202239 commit 9065049

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.devcontainer/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1818
# Install xpack ARM GCC toolchain
1919
RUN npm install --global @xpack-dev-tools/arm-none-eabi-gcc
2020

21+
# Debug: List npm global directories and check installation
22+
RUN npm list -g @xpack-dev-tools/arm-none-eabi-gcc
23+
2124
# Find and symlink the ARM GCC binaries
2225
RUN GCC_PATH=$(find /root/.local/xPacks/@xpack-dev-tools/arm-none-eabi-gcc -name "bin" -type d | head -n 1) && \
2326
if [ -z "$GCC_PATH" ]; then echo "ARM GCC toolchain not found"; exit 1; fi && \

0 commit comments

Comments
 (0)