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

Unified Diff: platforms/raspberry-pi2/.common.shlib

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « pkg/stm32f746g_disco/lib/uart.dart ('k') | platforms/raspberry-pi2/configure-network » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platforms/raspberry-pi2/.common.shlib
diff --git a/platforms/raspberry-pi2/.common.shlib b/platforms/raspberry-pi2/.common.shlib
index d744047938dbf395c9ee1d51882beb9769a03216..fac52d02b277151e92ed486891506184b5b6f72b 100644
--- a/platforms/raspberry-pi2/.common.shlib
+++ b/platforms/raspberry-pi2/.common.shlib
@@ -4,20 +4,20 @@
# Common script setup.
-# Handle the case where fletch-sdk/bin has been symlinked to.
+# Handle the case where dartino-sdk/bin has been symlinked to.
SCRIPT_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)"
-# Location of the Dart script and the Dart VM in a Fletch SDK.
+# Location of the Dart script and the Dart VM in a Dartino SDK.
DART_FILE="$SCRIPT_DIR/../../internal/pkg/flash_sd_card/bin/flash_sd_card.dart"
DART_VM="$SCRIPT_DIR/../../internal/dart"
-FLETCH_VM="$SCRIPT_DIR/../../bin/fletch-vm"
+DARTINO_VM="$SCRIPT_DIR/../../bin/dartino-vm"
-# If we are not in a Fletch SDK, assume a Fletch Github checkout.
+# If we are not in a Dartino SDK, assume a Dartino Github checkout.
if [ ! -r "$DART_FILE" ]; then
DART_FILE="$SCRIPT_DIR/../../pkg/flash_sd_card/bin/flash_sd_card.dart"
fi
-# If we are not in a Fletch SDK, assume a Fletch Github checkout.
+# If we are not in a Dartino SDK, assume a Dartino Github checkout.
if [ ! -r "$DART_VM" ]; then
# Guess Linux, running from platforms/raspberry-pi2.
DART_VM="$SCRIPT_DIR/../../third_party/bin/linux/dart"
@@ -27,8 +27,8 @@ if [ ! -r "$DART_VM" ]; then
fi
fi
-# If we are not in a Fletch SDK, assume a Fletch Github checkout.
-if [ ! -r "$FLETCH_VM" ]; then
- # Don't point to any Fletch VM in this case.
- FLETCH_VM=
+# If we are not in a Dartino SDK, assume a Dartino Github checkout.
+if [ ! -r "$DARTINO_VM" ]; then
+ # Don't point to any Dartino VM in this case.
+ DARTINO_VM=
fi
« no previous file with comments | « pkg/stm32f746g_disco/lib/uart.dart ('k') | platforms/raspberry-pi2/configure-network » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698