Skip to content

Commit

Permalink
Merge pull request #359 from koplo199/bottlesdevs-pr
Browse files Browse the repository at this point in the history
Fix dxvk unstable builds
  • Loading branch information
mirkobrombin authored Sep 17, 2024
2 parents e16c15f + 1b5d94d commit 291f68d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ jobs:
if: env.UPDATED == 'true' && steps.download-artifact.outputs.found_artifact == 'true'
working-directory: "bottle-components-repository"
run: |
folder=$(find "${{ github.workspace }}/artifact" -name "${{ env.NAMEPREFIX }}*")
folder=$(find "${{ github.workspace }}/artifact" -type d -name "${{ env.NAMEPREFIX }}*")
# Components specific tweaks
if [[ "${{ env.NAMEPREFIX }}" == "dxvk"* ]]; then
rm -rf "$folder/usr"
rm -rf "$folder/dxvk-native"*
fi
mkdir "${{ env.NAME }}"
mv "$folder"/* "${{ env.NAME }}"
Expand Down

0 comments on commit 291f68d

Please sign in to comment.