Skip to content

Commit

Permalink
Fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
migueldeicaza committed May 20, 2023
1 parent cdbd1c4 commit f0f8cfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/release
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if x$1 = x; then
if test x$1 = x; then
echo Usage is: relase TAG
exit 1
fi
Expand All @@ -20,5 +20,5 @@ echo ArchiveData: $archivePath

xcodebuild -scheme SwiftGodot -destination platform=generic/macOS,arch=x86_64 -derivedDataPath $derivedData -archivePath $archivePath >& $dir/x86_64.log
xcodebuild -scheme SwiftGodot -destination generic/platform=iOS -derivedDataPath $derivedData -archivePath $archivePath >& $dir/arm64.log
sh scripts/make-swiftgodot-framework /tmp/56515-build/derived/ /tmp/56515-build/SwiftGodot.xcframework
sh scripts/make-swiftgodot-framework $dir/derived/ ~/sg-builds/SwiftGodot.xcframework

0 comments on commit f0f8cfb

Please sign in to comment.