Skip to content

Commit 6ccb5b2

Browse files
authored
Merge pull request #7 from nahsi/fix-path
2 parents aea84e9 + eeb9aed commit 6ccb5b2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.2] - 2022-09-15
11+
12+
### Fixed
13+
14+
* Fix setting `$CARGO_HOME` to a valid path, in case rustup is installed from the internet.
15+
Thanks to @nahsi for providing the fix.
16+
1017
## [1.3.1] - 2022-08-14
1118

1219
### Changed

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ runs:
7474
run: |
7575
if ! command -v rustup &> /dev/null ; then
7676
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
77-
echo "${CARGO_HOME:-~/.cargo}/bin" >> $GITHUB_PATH
77+
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
7878
fi
7979
if: runner.os != 'Windows'
8080
shell: bash

0 commit comments

Comments
 (0)