From 54605ec430bfb22b3fa3688d2f03793c14ac42b5 Mon Sep 17 00:00:00 2001 From: Hazel Date: Wed, 24 Apr 2024 20:02:28 +0100 Subject: [PATCH] https://open.spotify.com/track/7LVHVU3tWfcxj5aiPFEW4Q --- .github/workflows/build-game.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-game.yml b/.github/workflows/build-game.yml index 364635d56..6529b5b06 100644 --- a/.github/workflows/build-game.yml +++ b/.github/workflows/build-game.yml @@ -102,9 +102,11 @@ jobs: - if: ${{ steps.cache-hmm.outputs.cache-hit != 'true' }} name: Install dependencies run: | - git config --global --replace-all $(git config --get-regexp http\.https\:\/\/github\.com\/\.extraheader) + conf_key="http\.https\:\/\/github\.com\/\.extraheader" + conf_val=$(git config --get-regexp $conf_key | cut -d " " -f 2-) + git config --global $conf_key "$conf_val" haxelib --global run hmm install - git config --global --unset-all http\.https\:\/\/github\.com\/\.extraheader + git config --global --unset-all $conf_key - if: ${{ matrix.target != 'html5' }} name: Restore hxcpp cache