Skip to content

Commit 291f68d

Browse files
author
Mirko Brombin
authored
Merge pull request #359 from koplo199/bottlesdevs-pr
Fix dxvk unstable builds
2 parents e16c15f + 1b5d94d commit 291f68d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pull-components.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,10 @@ jobs:
246246
if: env.UPDATED == 'true' && steps.download-artifact.outputs.found_artifact == 'true'
247247
working-directory: "bottle-components-repository"
248248
run: |
249-
folder=$(find "${{ github.workspace }}/artifact" -name "${{ env.NAMEPREFIX }}*")
249+
folder=$(find "${{ github.workspace }}/artifact" -type d -name "${{ env.NAMEPREFIX }}*")
250250
# Components specific tweaks
251251
if [[ "${{ env.NAMEPREFIX }}" == "dxvk"* ]]; then
252-
rm -rf "$folder/usr"
252+
rm -rf "$folder/dxvk-native"*
253253
fi
254254
mkdir "${{ env.NAME }}"
255255
mv "$folder"/* "${{ env.NAME }}"

0 commit comments

Comments
 (0)