Skip to content
This repository was archived by the owner on Jul 22, 2022. It is now read-only.

Commit 3ff739c

Browse files
committed
Update docker-pull.sh
1 parent 7e0d995 commit 3ff739c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ pytest:
3838

3939

4040
docker-pull:
41-
sh docker-pull.sh
41+
chmod +x docker-pull.sh
42+
./docker-pull.sh
4243

4344

4445
lint: flake8 pylint

docker-pull.sh

100644100755
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/sh
2+
set -v
13
docker pull bash # For bash
24
docker pull clangbuiltlinux/ubuntu:llvm10-latest # For clang-10 & clang++-10
35
docker pull clangbuiltlinux/ubuntu:llvm11-latest # For clang-11 & clang++-11
@@ -8,8 +10,8 @@ docker pull mono # For csc, vbnc & mono
810
docker pull node:12 # For node
911
docker pull openjdk # For javac and java
1012
docker pull php # For php
11-
docker pull pypy:3 # For pypy3
1213
docker pull pypy:2 # For pypy2
13-
docker pull python:3 # For python3
14+
docker pull pypy:3 # For pypy3
1415
docker pull python:2 # For python2
16+
docker pull python:3 # For python3
1517
docker pull ruby # For ruby

0 commit comments

Comments
 (0)