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 ca5a197 commit 8b88352Copy full SHA for 8b88352
1 file changed
.github/workflows/generate-thumbnails.yml
@@ -86,9 +86,12 @@ jobs:
86
87
vendors=$(
88
find . -maxdepth 1 -type f \
89
- \( -name "*.conf" -o -name "*.csc" -o -name "*.wip" -o -name "*.tvb" \) \
90
- -exec grep -hE '^[[:space:]]*BOARD_VENDOR=' {} + 2>/dev/null \
91
- | sed -E 's/^[[:space:]]*BOARD_VENDOR=//; s/^"//; s/"$//' \
+ \( -name "*.conf" -o -name "*.csc" -o -name "*.wip" -o -name "*.tvb" \) \
+ -exec grep -h 'BOARD_VENDOR=' {} + 2>/dev/null \
+ | sed -E '
92
+ s/.*BOARD_VENDOR=//;
93
+ s/^["'\'']//; s/["'\'']$//;
94
+ ' \
95
| tr '[:upper:]' '[:lower:]' \
96
| tr '_' '-' \
97
| awk 'NF' \
0 commit comments