From cd4ded1d5ba85c8f0d14ba508880e53bd3f07a8f Mon Sep 17 00:00:00 2001 From: sebthom Date: Sat, 20 Jul 2024 16:12:04 +0200 Subject: [PATCH] test --- .github/actions/internal/install-haxelibs/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/internal/install-haxelibs/action.yml b/.github/actions/internal/install-haxelibs/action.yml index 68493db..60f4185 100644 --- a/.github/actions/internal/install-haxelibs/action.yml +++ b/.github/actions/internal/install-haxelibs/action.yml @@ -112,9 +112,9 @@ runs: rm -rf "$HAXELIB_PATH/$lib_name/git" if [[ $haxelib_version == "4.0.2" ]]; then # workaround for "Uncaught exception - Failed with error: Eof" - (set -x; haxelib --debug --always git "$lib_name" "${lib_ver_splitted[0]}" ${lib_ver_splitted[1]:-}) + (set -x; haxelib --debug git --always "$lib_name" "${lib_ver_splitted[0]}" ${lib_ver_splitted[1]:-} || true) else - (set -x; haxelib --debug --always git "$lib_name" "${lib_ver_splitted[0]}" ${lib_ver_splitted[1]:-} || true) + (set -x; haxelib --debug git --always "$lib_name" "${lib_ver_splitted[0]}" ${lib_ver_splitted[1]:-}) fi continue; fi