Remove one unnecessary mkdir invocation

This commit is contained in:
Dean Herbert 2023-03-08 18:13:40 +09:00 committed by GitHub
parent 2519332ce6
commit 903eebdec4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,7 +132,6 @@ jobs:
run: mkdir -p SDL2-CS/native/ios run: mkdir -p SDL2-CS/native/ios
- name: Prepare release (iOS) - name: Prepare release (iOS)
run: | run: |
mkdir -p SDL2-CS/native/ios/SDL2.xcframework;
mkdir -p SDL2-CS/native/ios/SDL2.xcframework/ios-arm64/SDL2.framework; mkdir -p SDL2-CS/native/ios/SDL2.xcframework/ios-arm64/SDL2.framework;
mkdir -p SDL2-CS/native/ios/SDL2.xcframework/ios-arm64_x86_64-simulator/SDL2.framework; mkdir -p SDL2-CS/native/ios/SDL2.xcframework/ios-arm64_x86_64-simulator/SDL2.framework;
cp Xcode/SDL/Products/SDL2.xcframework/Info.plist SDL2-CS/native/ios/SDL2.xcframework/Info.plist; cp Xcode/SDL/Products/SDL2.xcframework/Info.plist SDL2-CS/native/ios/SDL2.xcframework/Info.plist;