File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -117,15 +117,14 @@ def sanityCheck
117
117
@worker . run ( "lipo -info #{ osxproductdir } /OCMock.framework/OCMock" ) { |lipo | archs = /re: (.*)/ . match ( lipo . readline ) [ 1 ] . strip ( ) }
118
118
puts "^^ wrong architecture for macOS framework; found: #{ archs } \n \n " unless archs == "x86_64"
119
119
@worker . run ( "lipo -info #{ ioslibproductdir } /libOCMock.a" ) { |lipo | archs = /re: (.*)/ . match ( lipo . readline ) [ 1 ] . strip ( ) }
120
- puts "^^ wrong architectures for iOS framework ; found: #{ archs } \n \n " unless archs == "armv7 i386 x86_64 arm64"
120
+ puts "^^ wrong architectures for iOS library ; found: #{ archs } \n \n " unless archs == "armv7 i386 x86_64 arm64"
121
121
@worker . run ( "lipo -info #{ iosproductdir } /OCMock.framework/OCMock" ) { |lipo | archs = /re: (.*)/ . match ( lipo . readline ) [ 1 ] . strip ( ) }
122
- puts "^^ wrong architectures for iOS library ; found: #{ archs } \n \n " unless archs == "i386 x86_64 armv7 arm64"
122
+ puts "^^ wrong architectures for iOS framework ; found: #{ archs } \n \n " unless archs == "x86_64 i386 armv7 arm64"
123
123
@worker . run ( "lipo -info #{ tvosproductdir } /OCMock.framework/OCMock" ) { |lipo | archs = /re: (.*)/ . match ( lipo . readline ) [ 1 ] . strip ( ) }
124
124
puts "^^ wrong architectures for tvOS framework; found: #{ archs } \n \n " unless archs == "x86_64 arm64"
125
125
@worker . run ( "lipo -info #{ watchosproductdir } /OCMock.framework/OCMock" ) { |lipo | archs = /re: (.*)/ . match ( lipo . readline ) [ 1 ] . strip ( ) }
126
- puts "^^ wrong architectures for watchOS framework; found: #{ archs } \n \n " unless archs == "i386 x86_64 armv7k arm64_32"
126
+ puts "^^ wrong architectures for watchOS framework; found: #{ archs } \n \n " unless archs == "x86_64 i386 armv7k arm64_32"
127
127
128
-
129
128
@worker . run ( "codesign -dvv #{ osxproductdir } /OCMock.framework" )
130
129
@worker . run ( "codesign -dvv #{ iosproductdir } /OCMock.framework" )
131
130
@worker . run ( "codesign -dvv #{ tvosproductdir } /OCMock.framework" )
You can’t perform that action at this time.
0 commit comments