Skip to content

Commit 7d2efc1

Browse files
committed
Fix adding CARGO_HOME to PATH
1 parent aea84e9 commit 7d2efc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
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)