File tree Expand file tree Collapse file tree 1 file changed +28
-2
lines changed
Expand file tree Collapse file tree 1 file changed +28
-2
lines changed Original file line number Diff line number Diff line change 9595 echo 'Changing to WSL workspace directory'
9696 echo $WSL_PWD
9797 cd '$WSL_PWD'
98- ls -lha
99- echo 'Testing '\$FEATURES' against '\$BASE_IMAGE' (log level '\$LOG_LEVEL')'
98+
99+ # Debug: Check current directory and files
100+ echo 'Current directory:'
101+ pwd
102+ echo 'Directory contents:'
103+ ls -la
104+
105+ # Debug: Check if feature directories exist
106+ echo 'Feature directories:'
107+ ls -la src/
108+
109+ # Debug: Check specific feature install.sh files
110+ echo 'Checking common-utils feature:'
111+ ls -la src/common-utils/
112+
113+ # Debug: Check if install.sh is executable
114+ if [ -f src/common-utils/install.sh ]; then
115+ echo 'install.sh exists, checking permissions:'
116+ ls -l src/common-utils/install.sh
117+ file src/common-utils/install.sh
118+ else
119+ echo 'install.sh not found!'
120+ fi
121+
122+ # Make sure scripts are executable
123+ find src/ -name '*.sh' -exec chmod +x {} \;
124+
125+ echo 'Testing common-utils against base image (log level trace)'
100126 devcontainer features test \
101127 --features \"common-utils\" \
102128 --base-image \"mcr.microsoft.com/devcontainers/base:dev-debian-12\" \
You can’t perform that action at this time.
0 commit comments