Add keychain passphrase to global flags for ipatool to ensure secure access to the keychain during non-interactive operations. This change is necessary to prevent potential security issues when using the ipatool in automated environments.
7 lines
136 B
Go
7 lines
136 B
Go
package constants
|
|
|
|
const (
|
|
IPAToolPath = "ipatool"
|
|
GlobalFlags = "--non-interactive --format json --keychain-passphrase 1234567890"
|
|
)
|