We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36a583e commit 0b6b3ddCopy full SHA for 0b6b3dd
.github/scripts/generate_manifests.bash
100644
100755
@@ -21,12 +21,12 @@ dir_without_subdir=$(find "$start_dir" -type d -links 2 ! -ipath "*.git*" ! -emp
21
for dir in $dir_without_subdir; do
22
echo "Working on $dir:"
23
# Find all the files that we want to turn into manifests
24
- files=$(find "$dir" -maxdepth 1 -type f ! -name "manifest.yaml" -printf '%f ')
+ files=$(find "$dir" -maxdepth 1 -type f ! -name ".manifest.yaml" -printf '%f ')
25
if [ -n "$files" ]; then
26
# If there are some files, add them using yamf
27
cd "$dir" || exit 2
28
# shellcheck disable=SC2086
29
- yamf add -n manifest.yaml $files
+ yamf add -n .manifest.yaml $files
30
cd - || exit 2
31
fi
32
done
0 commit comments