We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e16c15f commit 1b5d94dCopy full SHA for 1b5d94d
.github/workflows/pull-components.yml
@@ -246,10 +246,10 @@ jobs:
246
if: env.UPDATED == 'true' && steps.download-artifact.outputs.found_artifact == 'true'
247
working-directory: "bottle-components-repository"
248
run: |
249
- folder=$(find "${{ github.workspace }}/artifact" -name "${{ env.NAMEPREFIX }}*")
+ folder=$(find "${{ github.workspace }}/artifact" -type d -name "${{ env.NAMEPREFIX }}*")
250
# Components specific tweaks
251
if [[ "${{ env.NAMEPREFIX }}" == "dxvk"* ]]; then
252
- rm -rf "$folder/usr"
+ rm -rf "$folder/dxvk-native"*
253
fi
254
mkdir "${{ env.NAME }}"
255
mv "$folder"/* "${{ env.NAME }}"
0 commit comments