We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b900fb4 + 6a634da commit 71372c1Copy full SHA for 71372c1
support/helpers.sh
@@ -3,7 +3,7 @@ function download_project() {
3
version=$(cat versions/$project)
4
echo "Downloading $project at $version"
5
mkdir -p projects
6
- curl --output projects/$project.tar.gz -L "https://github.com/code0-tech/$project/archive/$version.tar.gz" || return 10
+ curl --output projects/$project.tar.gz --fail-with-body -L "https://github.com/code0-tech/$project/archive/$version.tar.gz" || return 10
7
tar -xzf projects/$project.tar.gz -C projects || return 10
8
rm projects/$project.tar.gz || return 1
9
mv projects/$project-* projects/$project || return 1
0 commit comments