Ooops, incorrect Ruby syntax.
This commit is contained in:
parent
029bc1da55
commit
303f491547
1 changed files with 3 additions and 3 deletions
|
@ -15,8 +15,8 @@ osgVersion = runOsgVersion('version-number')
|
||||||
$osgSoVersion=runOsgVersion('so-number')
|
$osgSoVersion=runOsgVersion('so-number')
|
||||||
$openThreadsSoVersion=runOsgVersion('openthreads-soversion-number')
|
$openThreadsSoVersion=runOsgVersion('openthreads-soversion-number')
|
||||||
|
|
||||||
codeSignIdentity = ENV['FG_CODESIGN_IDENTITY']
|
$codeSignIdentity = ENV['FG_CODESIGN_IDENTITY']
|
||||||
puts "Code signing identity is #{codeSignIdentity}"
|
puts "Code signing identity is #{$codeSignIdentity}"
|
||||||
|
|
||||||
puts "osgVersion=#{osgVersion}, so-number=#{$osgSoVersion}"
|
puts "osgVersion=#{osgVersion}, so-number=#{$osgSoVersion}"
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ end
|
||||||
|
|
||||||
def code_sign(path)
|
def code_sign(path)
|
||||||
puts "Signing #{path}"
|
puts "Signing #{path}"
|
||||||
`codesign -s "#{codeSignIdentity}" #{path}`
|
`codesign -s "#{$codeSignIdentity}" #{path}`
|
||||||
end
|
end
|
||||||
|
|
||||||
fgVersion = File.read("#{srcDir}/version").strip
|
fgVersion = File.read("#{srcDir}/version").strip
|
||||||
|
|
Loading…
Add table
Reference in a new issue