From 4f3d11bc2ab5010e4704f178ab03960575099ebc Mon Sep 17 00:00:00 2001 From: asonix Date: Wed, 7 Feb 2024 19:33:53 -0600 Subject: [PATCH] Echo --- .forgejo/actions/prepare-rust/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/actions/prepare-rust/action.yaml b/.forgejo/actions/prepare-rust/action.yaml index 364ec59..d3401d6 100644 --- a/.forgejo/actions/prepare-rust/action.yaml +++ b/.forgejo/actions/prepare-rust/action.yaml @@ -47,8 +47,8 @@ runs: name: Export path if: steps.cache.outputs.cache-hit == 'true' run: | - $HOME/.cargo/bin >> $GITHUB_PATH - $HOME/.rustup/bin >> $GITHUB_PATH + echo "${HOME}/.cargo/bin" >> "${GITHUB_PATH}" + echo "${HOME}/.rustup/bin" >> "${GITHUB_PATH}" - name: Populate rust cache if: steps.cache.outputs.cache-hit != 'true'