mirror of
https://github.com/robbert-vdh/nih-plug.git
synced 2026-07-01 02:36:54 +00:00
Avoid awk on macOS
I was hoping they'd have gawk installed, but I guess not.
This commit is contained in:
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user