10000 Made "make docs" POSIX compliant to fix Helm-docs CI issue by Ilyesbdlala · Pull Request #886 · secureCodeBox/secureCodeBox · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ hook-docs:
# Start in the hooks folder
cd hooks
# https://github.com/koalaman/shellcheck/wiki/SC2044
find . -type f -name Chart.yaml -print0 | while IFS= read -r -d '' chart; do
find . -type f ! -name "$(printf "*\n*")" -name Chart.yaml | while IFS= read -r chart; do
(
dir="$$(dirname "$${chart}")"
echo "Processing Helm Chart in $$dir"
Expand All @@ -76,7 +76,7 @@ scanner-docs:
# Start in the scanners folder
cd scanners
# https://github.com/koalaman/shellcheck/wiki/SC2044
find . -type f -name Chart.yaml -print0 | while IFS= read -r -d '' chart; do
find . -type f ! -name "$(printf "*\n*")" -name Chart.yaml | while IFS= read -r chart; do
(
dir="$$(dirname "$${chart}")"
echo "Processing Helm Chart in $$dir"
Expand Down Expand Up @@ -129,7 +129,7 @@ demo-apps-docs:
# Start in the hooks folder
cd demo-targets
# https://github.com/koalaman/shellcheck/wiki/SC2044
find . -type f -name Chart.yaml -print0 | while IFS= read -r -d '' chart; do
find . -type f ! -name "$(printf "*\n*")" -name Chart.yaml | while IFS= read -r chart; do
(
dir="$$(dirname "$${chart}")"
echo "Processing Helm Chart in $$dir"
Expand Down
0