Skip to content

Commit

Permalink
fix(exclude-path): IN PROGRESS
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Hivert committed Sep 4, 2024
1 parent 4c52586 commit 692807b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/excluded-paths.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ else
echo "No path are excluded from this build, DTT_DOCS_EXCLUDED_PATH is absent or empty"
fi

for excluded_path in ${DTT_DOCS_EXCLUDED_PATH/:/ }; do
for excluded_path in ${DTT_DOCS_EXCLUDED_PATH//:/ }; do
echo "Removing \"docs/${excluded_path}\" from current build"
( set -x; rm -rf "docs/${excluded_path}" )
( set -x; rm --recursive --force --verbose "docs/${excluded_path}" )
done

0 comments on commit 692807b

Please sign in to comment.