From: Daan De Meyer Date: Fri, 29 Nov 2024 12:18:28 +0000 (+0100) Subject: action: Fix symlink creation X-Git-Tag: v25~133 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07ef37c4c0dad5dfc6cec86c967a7600df1cd88c;p=thirdparty%2Fmkosi.git action: Fix symlink creation --- diff --git a/action.yaml b/action.yaml index b2afc1a70..df7ae67f8 100644 --- a/action.yaml +++ b/action.yaml @@ -62,7 +62,7 @@ runs: sudo ln -svf ${{ github.action_path }}/bin/mkosi /usr/bin/mkosi # Make sure that mkosi is still found inside "mkosi sandbox" where /usr is potentially replaced with # a tools tree's /usr. - mkdir -p $HOME/.local/bin/mkosi + mkdir -p $HOME/.local/bin ln -svf ${{ github.action_path }}/bin/mkosi $HOME/.local/bin/mkosi - name: Dependencies