Skip to content

Commit 731ca61

Browse files
committed
Fixes script writing
1 parent bd480f9 commit 731ca61

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ RUN npm install
5353
RUN npm run compile
5454

5555
# Create test script
56-
RUN cat > /test_extension.sh << 'EOF'
56+
RUN cat > /test_extension.sh << 'EOF' && chmod +x /test_extension.sh
5757
#!/bin/bash
5858
set -e
5959

@@ -198,9 +198,5 @@ echo ""
198198
echo "Next: Test ctrl+click navigation in VSCode"
199199
echo "=========================================="
200200
201-
EOF
202-
203-
RUN chmod +x /test_extension.sh
204-
205201
# Set the entrypoint
206202
ENTRYPOINT ["/test_extension.sh"]

0 commit comments

Comments
 (0)