Skip to content

Commit

Permalink
Modify the archive path of MacOS and iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
xioxin committed Mar 11, 2022
1 parent ec6658f commit 97147d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/build_ios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k abc123 bui
codesignIdentity=`security find-identity -p codesigning -v | grep -Eo "[0-9A-F]{40}" | head -n 1`
/usr/bin/codesign --force -s $codesignIdentity ./products/LabSoundBridge.framework -v

tar -zcvf LabSoundBridge_ios.tar.gz ./products/LabSoundBridge.framework
tar -zcvf LabSoundBridge_ios.tar.gz -C ./products LabSoundBridge.framework
2 changes: 1 addition & 1 deletion tools/build_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k abc123 bui
codesignIdentity=`security find-identity -p codesigning -v | grep -Eo "[0-9A-F]{40}" | head -n 1`
/usr/bin/codesign --force -s $codesignIdentity ./build/LabSoundBridge.framework -v

tar -zcvf LabSoundBridge_macos_x64.tar.gz ./build/LabSoundBridge.framework
tar -zcvf LabSoundBridge_macos_x64.tar.gz -C ./build LabSoundBridge.framework

0 comments on commit 97147d7

Please sign in to comment.