Last active
February 23, 2022 18:33
-
-
Save joshdholtz/f984cfb8f656a3bd67be39742e27db67 to your computer and use it in GitHub Desktop.
Check if fastlane is building in Xcode run script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lane :build do | |
gym( | |
xcargs: "FASTLANE=true" | |
) | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -z "${FASTLANE}" ]]; then | |
echo "NOT USING fastlane" | |
else | |
echo "USING fastlane" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment