Avoid awk on macOS

I was hoping they'd have gawk installed, but I guess not.
This commit is contained in:
Robbert van der Helm
2022-02-16 13:34:20 +01:00
parent 9b41017f36
commit c5c966c0cc
2 changed files with 16 additions and 1 deletions

View File

@@ -107,7 +107,7 @@ jobs:
# Instead of hardcoding which targets to build and package, we'll
# package everything that's got en entry in the `bundler.toml` file
run: |
packages=$(awk 'match($0, /^\s*\["?([^"]+)"?]/, matches) { print matches[1] }' bundler.toml)
packages=$(cargo xtask known-packages)
for package in $packages; do
cargo xtask bundle "$package" --bundle-vst3 --release
done