Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sdb9696 committed Apr 5, 2024
1 parent ab8c9d1 commit 1abadbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ runs:
id: variable-setup
run: |
export SEP=${{ !startsWith(inputs.os, 'windows') && '/' || '\\' }}"
echo "PIPX_HOME=${{ github.workspace }}${{ $SEP }}pipx_cache${{ $SEP }}home" >> $GITHUB_ENV
echo "PIPX_BIN_DIR=${{ github.workspace }}${{ $SEP }}pipx_cache${{ $SEP }}bin" >> $GITHUB_ENV
echo "PIPX_MAN_DIR=${{ github.workspace }}${{ $SEP }}pipx_cache${{ $SEP }}man" >> $GITHUB_ENV
echo "PIPX_HOME=${{ github.workspace }}$SEPpipx_cache$SEPhome" >> $GITHUB_ENV
echo "PIPX_BIN_DIR=${{ github.workspace }}$SEPpipx_cache$SEPbin" >> $GITHUB_ENV
echo "PIPX_MAN_DIR=${{ github.workspace }}$SEPpipx_cache$SEPman" >> $GITHUB_ENV
echo "ENV_CMD_PREFIX=${{ !startsWith(inputs.os, 'windows') && 'sudo' || 'set' }}" >> $GITHUB_ENV
echo "SEP=$SEP" >> $GITHUB_ENV
echo "pipx-home=$PIPX_HOME" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 1abadbd

Please sign in to comment.