File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 os :
2020 - ubuntu-latest
2121 - windows-latest
22- - macos-latest
22+ # - macos-latest
2323 jython_version :
2424 - " 2.7.3"
2525 - " 2.7.2"
6969 echo "GITHUB_PATH"
7070 cat $GITHUB_PATH
7171
72- [ -f ~/.local/bin/jython ] && cat ~/.local/bin/jython
73- [ -f ~/.local/bin/jython.bat ] && cat ~/.local/bin/jython.bat
72+ if [ -f ~/.local/bin/jython ]; then
73+ cat ~/.local/bin/jython;
74+ fi
75+ if [ -f ~/.local/bin/jython.bat ]; then
76+ cat ~/.local/bin/jython.bat;
77+ fi
7478
7579 - name : Run Jython (Bash)
7680 shell : bash
Original file line number Diff line number Diff line change @@ -172,12 +172,9 @@ runs:
172172 - name : Add to PATH (Linux and macOS)
173173 if : runner.os != 'Windows'
174174 shell : bash
175- run : |
176- echo ~/.local/bin >> $GITHUB_PATH
177- echo "${{ steps.find_installer.outputs.file_type }}/bin" >> $GITHUB_PATH
175+ run : echo ~/.local/bin >> $GITHUB_PATH
178176 - name : Add to PATH (Windows)
179177 if : runner.os == 'Windows'
180178 shell : pwsh
181179 run : |
182180 "$HOME\.local\bin" | Out-File -FilePath $env:GITHUB_PATH -Append
183- Convert-Path "${{ inputs.installation-path }}\bin" | Out-File -FilePath $env:GITHUB_PATH -Append
You can’t perform that action at this time.
0 commit comments