Skip to content

Commit

Permalink
Glob the SDK name instead of hardcoding gecko
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Jun 18, 2024
1 parent f71dcb6 commit dc8d95f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Install SDK extensions
run: |
# XXX: slc-cli does not actually work when the extensions aren't in the SDK!
for sdk in /gecko_sdk_*; do
for sdk in /*_sdk_*; do
slc signature trust --sdk "$sdk"
ln -s $PWD/gecko_sdk_extensions "$sdk"/extension
Expand All @@ -148,7 +148,7 @@ jobs:
# Pass all SDKs as consecutive `--sdk ...` arguments
sdk_args=""
for sdk_dir in /gecko_sdk*; do
for sdk_dir in /*_sdk*; do
sdk_args="$sdk_args --sdk $sdk_dir"
done
Expand Down

0 comments on commit dc8d95f

Please sign in to comment.