Skip to content

Commit

Permalink
try to escape | and > ...
Browse files Browse the repository at this point in the history
  • Loading branch information
leofang committed Dec 8, 2024
1 parent 5615d54 commit bb5fed3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ runs:
ls -l $CUDA_PATH
# Prepare the cache
tar cf - $CUDA_PATH | xz -z -T0 - > $CTK_CACHE_FILENAME
# Note: try to escape | and > ...
echo "$(tar cf - ${CUDA_PATH} | xz -z -T0 - > ${CTK_CACHE_FILENAME})"
# Note: the headers will be copied into the cibuildwheel manylinux container,
# so setting the CUDA_PATH env var here is meaningless.
Expand Down

0 comments on commit bb5fed3

Please sign in to comment.