Don't run rbenv'd gem commands with sudo (#135)

This commit is contained in:
anders-nylander 2024-03-11 13:36:49 +01:00 committed by GitHub
parent bf9f6a6146
commit 8b0607128f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -102,9 +102,9 @@ build {
inline = [
"source ~/.zprofile",
"brew install libimobiledevice ideviceinstaller ios-deploy fastlane carthage",
"sudo gem update",
"sudo gem install cocoapods",
"sudo gem uninstall --ignore-dependencies ffi && sudo gem install ffi -- --enable-libffi-alloc"
"gem update",
"gem install cocoapods",
"gem uninstall --ignore-dependencies ffi && gem install ffi -- --enable-libffi-alloc"
]
}