Skip to content

Instantly share code, notes, and snippets.

@joshdholtz
Last active February 23, 2022 18:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshdholtz/f984cfb8f656a3bd67be39742e27db67 to your computer and use it in GitHub Desktop.
Save joshdholtz/f984cfb8f656a3bd67be39742e27db67 to your computer and use it in GitHub Desktop.
Check if fastlane is building in Xcode run script
lane :build do
gym(
xcargs: "FASTLANE=true"
)
end
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