Skip to content

Commit

Permalink
Create symbolic link in temp directory
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed May 5, 2022
1 parent 90814f1 commit c60b0f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion composite/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ runs:
interpreter3="${interpreter}3"
if [[ ! -e "$interpreter3" ]]
then
ln -s $interpreter $interpreter3
mkdir -p "$RUNNER_TEMP/bin/"
ln -s "$interpreter" "$RUNNER_TEMP/bin/${interpreter}3"
echo "PATH=$PATH:$RUNNER_TEMP/bin/${interpreter}3" >> $GITHUB_ENV
fi
fi
echo '##[endgroup]'
Expand Down

0 comments on commit c60b0f3

Please sign in to comment.