Skip to content

Commit 1b5d94d

Browse files
committed
Fix dxvk unstable builds
1 parent e16c15f commit 1b5d94d

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)