File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
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
+
10
17
## [ 1.3.1] - 2022-08-14
11
18
12
19
### Changed
Original file line number Diff line number Diff line change 74
74
run : |
75
75
if ! command -v rustup &> /dev/null ; then
76
76
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
78
78
fi
79
79
if : runner.os != 'Windows'
80
80
shell : bash
You can’t perform that action at this time.
0 commit comments