Skip to content

Commit 1496145

Browse files
committed
stylechecker: fetch tarballs via codeload endpoint
1 parent 2e578a5 commit 1496145

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

circleci/images/stylechecker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ apk add --no-cache \
3131
python3 \
3232
py3-packaging \
3333

34-
curl -L "https://github.com/citusdata/tools/archive/v${TOOLS_VERSION}.tar.gz" | tar xz
34+
curl -fsSL "https://codeload.github.com/citusdata/tools/tar.gz/v${TOOLS_VERSION}" | tar xz
3535
cd "tools-${TOOLS_VERSION}"
3636
make uncrustify/.install
3737
cd ..
3838
rm -rf "v${TOOLS_VERSION}.tar.gz"
3939

40-
curl -L "https://github.com/uncrustify/uncrustify/archive/uncrustify-0.82.0.tar.gz" | tar xz
40+
curl -fsSL "https://codeload.github.com/uncrustify/uncrustify/tar.gz/uncrustify-0.82.0" | tar xz
4141
cd uncrustify-uncrustify-0.82.0/
4242
mkdir build
4343
cd build

0 commit comments

Comments
 (0)