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.
1 parent 8e2ce72 commit 6a634daCopy full SHA for 6a634da
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