Mac: make code-signing identity an env variable.
(So I don't have to hard-code my profile ID into git)
This commit is contained in:
parent
7c22e497b6
commit
029bc1da55
1 changed files with 4 additions and 1 deletions
|
@ -15,6 +15,9 @@ osgVersion = runOsgVersion('version-number')
|
|||
$osgSoVersion=runOsgVersion('so-number')
|
||||
$openThreadsSoVersion=runOsgVersion('openthreads-soversion-number')
|
||||
|
||||
codeSignIdentity = ENV['FG_CODESIGN_IDENTITY']
|
||||
puts "Code signing identity is #{codeSignIdentity}"
|
||||
|
||||
puts "osgVersion=#{osgVersion}, so-number=#{$osgSoVersion}"
|
||||
|
||||
$alutSourcePath='/Library/Frameworks/ALUT.framework'
|
||||
|
@ -78,7 +81,7 @@ end
|
|||
|
||||
def code_sign(path)
|
||||
puts "Signing #{path}"
|
||||
`codesign -s "FlightGear" #{path}`
|
||||
`codesign -s "#{codeSignIdentity}" #{path}`
|
||||
end
|
||||
|
||||
fgVersion = File.read("#{srcDir}/version").strip
|
||||
|
|
Loading…
Reference in a new issue