Skip to content

Commit ae23b26

Browse files
authored
forgot to remove the win check
1 parent a2895a7 commit ae23b26

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

action.yml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -296,18 +296,16 @@ runs:
296296
fi
297297
fi
298298
299-
if [ ${{ steps.platform.outputs.id }} = "win" ]; then
300-
if [ "${{ inputs.export-debug }}" = "true" ]; then
301-
for file in $(find ./build -name *.pdb); do
302-
cp $file "${{ github.workspace }}/output"
303-
done
304-
for file in $(find ./build -name *.dbg); do
305-
cp $file "${{ github.workspace }}/output"
306-
done
307-
for file in $(find ./build -name *.dSYM); do
308-
cp $file "${{ github.workspace }}/output"
309-
done
310-
fi
299+
if [ "${{ inputs.export-debug }}" = "true" ]; then
300+
for file in $(find ./build -name *.pdb); do
301+
cp $file "${{ github.workspace }}/output"
302+
done
303+
for file in $(find ./build -name *.dbg); do
304+
cp $file "${{ github.workspace }}/output"
305+
done
306+
for file in $(find ./build -name *.dSYM); do
307+
cp $file "${{ github.workspace }}/output"
308+
done
311309
fi
312310
313311
OUTPUT_DIR="${{ github.workspace }}/output"

0 commit comments

Comments
 (0)