Merge pull request #7 from nahsi/fix-path
This commit is contained in:
commit
6ccb5b2412
|
@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.3.2] - 2022-09-15
|
||||
|
||||
### Fixed
|
||||
|
||||
* Fix setting `$CARGO_HOME` to a valid path, in case rustup is installed from the internet.
|
||||
Thanks to @nahsi for providing the fix.
|
||||
|
||||
## [1.3.1] - 2022-08-14
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -74,7 +74,7 @@ runs:
|
|||
run: |
|
||||
if ! command -v rustup &> /dev/null ; then
|
||||
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
|
||||
echo "${CARGO_HOME:-~/.cargo}/bin" >> $GITHUB_PATH
|
||||
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
|
||||
fi
|
||||
if: runner.os != 'Windows'
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in New Issue