Skip to content

Commit

Permalink
Check in GEM_HOME for jazzy (flutter#7628)
Browse files Browse the repository at this point in the history
* Check in GEM_HOME for jazzy
  • Loading branch information
dnfield authored Jan 29, 2019
1 parent d79f421 commit 20d8388
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions tools/gen_objcdoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,25 @@

# Generates objc docs for Flutter iOS libraries.

if [ ! -d "shell/platform/darwin/ios" ]
if [[ ! -d "shell/platform/darwin/ios" ]]
then
echo "Error: This script must be run at the root of the Flutter source tree."
exit 1
fi

if [ $# -eq 0 ]
if [[ $# -eq 0 ]]
then
echo "Error: Argument specifying output directory required."
exit 1
fi

# If GEM_HOME is set, prefer using its copy of jazzy.
# LUCI will put jazzy here instead of on the path.
if [[ -n "${GEM_HOME}" ]]
then
PATH="${GEM_HOME}/bin:$PATH"
fi

# Use iPhoneSimulator SDK
# See: https://github.com/realm/jazzy/issues/791
jazzy \
Expand All @@ -28,8 +35,8 @@ jazzy \
--github_url 'https://github.com/flutter'\
--github-file-prefix 'http://github.com/flutter/engine/blob/master'\
--module-version 1.0.0\
--xcodebuild-arguments --objc,shell/platform/darwin/ios/framework/Headers/Flutter.h,--,-x,objective-c,-isysroot,$(xcrun --show-sdk-path --sdk iphonesimulator),-I,$(pwd)\
--xcodebuild-arguments --objc,shell/platform/darwin/ios/framework/Headers/Flutter.h,--,-x,objective-c,-isysroot,"$(xcrun --show-sdk-path --sdk iphonesimulator)",-I,"$(pwd)"\
--module Flutter\
--root-url https://docs.flutter.io/objc/\
--output $1\
--output "$1"\
--no-download-badge

0 comments on commit 20d8388

Please sign in to comment.