Skip to content

Commit

Permalink
Simplify addition to path step
Browse files Browse the repository at this point in the history
  • Loading branch information
mosteo committed Aug 13, 2024
1 parent 4f2b54a commit 78ddccf
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,17 +131,11 @@ runs:
echo REMOVAL TARGET: $(which alr)
rm -f $(which alr)* && echo REMOVED stable alr used for toolchain install
- name: Install GNAT (III) - Add to path (Windows)
if: steps.need-GNAT.outputs.need == 'true' && runner.os == 'Windows'
shell: pwsh
run: |
$Target = Resolve-Path .\setup_alire_prefix\bin
Add-Content $env:GITHUB_PATH $Target
- name: Install GNAT (III) - Add to path (!Windows)
if: steps.need-GNAT.outputs.need == 'true' && runner.os != 'Windows'
- name: Install GNAT (III) - Add to path
if: steps.need-GNAT.outputs.need == 'true'
shell: bash
run: |
echo Adding to PATH: $(readlink -f "$PWD/setup_alire_prefix/bin")
readlink -f "$PWD/setup_alire_prefix/bin" >> $GITHUB_PATH
# END TOOLCHAIN INSTALLATION
Expand Down

0 comments on commit 78ddccf

Please sign in to comment.