Skip to content

Commit 0b6b3dd

Browse files
committed
Manual update of generate_manifests.bash for .manifest.yaml filename
1 parent 36a583e commit 0b6b3dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/generate_manifests.bash

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ dir_without_subdir=$(find "$start_dir" -type d -links 2 ! -ipath "*.git*" ! -emp
2121
for dir in $dir_without_subdir; do
2222
echo "Working on $dir:"
2323
# Find all the files that we want to turn into manifests
24-
files=$(find "$dir" -maxdepth 1 -type f ! -name "manifest.yaml" -printf '%f ')
24+
files=$(find "$dir" -maxdepth 1 -type f ! -name ".manifest.yaml" -printf '%f ')
2525
if [ -n "$files" ]; then
2626
# If there are some files, add them using yamf
2727
cd "$dir" || exit 2
2828
# shellcheck disable=SC2086
29-
yamf add -n manifest.yaml $files
29+
yamf add -n .manifest.yaml $files
3030
cd - || exit 2
3131
fi
3232
done

0 commit comments

Comments
 (0)