Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Jul 20, 2024
1 parent 13ef373 commit 9ebd2b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/actions/internal/install-haxelibs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ runs:
echo "haxelib version: $haxelib_version"
if [[ $haxelib_version == "4.0.2" ]]; then
# workaround for "Uncaught exception - Failed with error: Eof"
haxelib --global update haxelib
(set -x; curl -sSfL --connect-timeout 10 --retry 3 "https://lib.haxe.org/p/haxelib/4.1.0/download/" -o haxelib.zip)
(set -x; haxelib --debug --always --global install haxelib.zip)
rm haxelib.zip
fi
(set -x; haxelib config)
Expand Down Expand Up @@ -129,7 +131,7 @@ runs:
fi
if [[ ! -f $HAXELIB_PATH/$lib_name/${lib_ver//./,}/haxelib.json ]]; then
(set -x; curl -sSfL --connect-timeout 10 --retry 3 "https://lib.haxe.org/p/$lib_name/$lib_ver/download/" -o "$lib_name.zip") || exit $?
(set -x; curl -sSfL --connect-timeout 10 --retry 3 "https://lib.haxe.org/p/$lib_name/$lib_ver/download/" -o "$lib_name.zip")
(set -x; haxelib --debug --always install "$lib_name.zip")
rm "$lib_name.zip"
else
Expand Down

0 comments on commit 9ebd2b2

Please sign in to comment.