Skip to content

Commit

Permalink
Fix env path stuff
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Wieczorek <[email protected]>
  • Loading branch information
twz123 committed Oct 11, 2023
1 parent 9e719e6 commit 6d13f50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cleaner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
df -h
for path in ENV_PATHS_TO_RM; do
path="${!path}" || continue
[ -z "$path" ] || sudo rm -rf -- "$path"
for envPathToRm in $ENV_PATHS_TO_RM; do
envPathToRm="${!envPathToRm}" || continue
[ -z "$envPathToRm" ] || sudo rm -rf -- "$envPathToRm"
done
df -h
Expand Down

0 comments on commit 6d13f50

Please sign in to comment.