Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(683)

Unified Diff: platform_tools/ios/bin/ios_setup.sh

Issue 1153783003: Fix out path in iOS platform script (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « platform_tools/ios/bin/ios_ninja ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/ios/bin/ios_setup.sh
diff --git a/platform_tools/ios/bin/ios_setup.sh b/platform_tools/ios/bin/ios_setup.sh
index fc6386c6b3fc56a37280df9f0776caf28bb75728..d36da834e84463f4c9ea2491ad9709d96bd84f05 100755
--- a/platform_tools/ios/bin/ios_setup.sh
+++ b/platform_tools/ios/bin/ios_setup.sh
@@ -39,6 +39,11 @@ if [[ -z "$BUILDTYPE" ]]; then
BUILDTYPE="Debug"
fi
+# Out dir is $SKIA_SRC_DIR/out by default.
+if [[ -z "$SKIA_OUT" ]]; then
+ SKIA_OUT="$SKIA_SRC_DIR/out"
+fi
+
ios_uninstall_app() {
ideviceinstaller -U "$IOS_BUNDLE_ID"
}
« no previous file with comments | « platform_tools/ios/bin/ios_ninja ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698