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

Unified Diff: samples/github/compile_mock_service.sh

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 | « samples/github/bin/github.dart ('k') | samples/github/ios/Podfile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/github/compile_mock_service.sh
diff --git a/samples/github/compile_mock_service.sh b/samples/github/compile_mock_service.sh
index 97f650d2f1a07d2e2cf232bc0bc74ba2eae03d1d..72ac9b4a89059c0eff74851a1d6a5845bbb5ff06 100755
--- a/samples/github/compile_mock_service.sh
+++ b/samples/github/compile_mock_service.sh
@@ -11,7 +11,7 @@
set -ue
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
-FLETCH_DIR="$(cd "$DIR/../.." && pwd)"
+DARTINO_DIR="$(cd "$DIR/../.." && pwd)"
DATA_DIR="$DIR/lib/src/github_mock_data"
DATA_FILE="$DIR/lib/src/github_mock.data"
IDL_FILE="$DIR/lib/src/github_mock.idl"
@@ -19,13 +19,13 @@ MOCK_FILE="$DIR/bin/github_mock_service.dart"
SNAPSHOT_FILE="$DIR/github_mock_service.snapshot"
PKG_FILE="$DIR/.packages"
-DART="$FLETCH_DIR/out/ReleaseIA32/dart"
-FLETCH="$FLETCH_DIR/out/ReleaseIA32/fletch"
-SERVICEC="$FLETCH x-servicec"
+DART="$DARTINO_DIR/out/ReleaseIA32/dart"
+DARTINO="$DARTINO_DIR/out/ReleaseIA32/dartino"
+SERVICEC="$DARTINO x-servicec"
SERVICE_GEN_DIR="$DIR/generated/service"
-cd $FLETCH_DIR
+cd $DARTINO_DIR
ninja -C out/ReleaseIA32
if [[ $# -eq 0 ]] || [[ "$1" == "data" ]]; then
@@ -51,9 +51,9 @@ if [[ $# -eq 0 ]] || [[ "$1" == "service" ]]; then
fi
if [[ $# -eq 0 ]] || [[ "$1" == "snapshot" ]]; then
- cd $FLETCH_DIR
+ cd $DARTINO_DIR
$DART -c --packages=.packages \
-Dsnapshot="$SNAPSHOT_FILE" \
-Dpackages="$PKG_FILE" \
- tests/fletchc/run.dart "$MOCK_FILE"
+ tests/dartino_compiler/run.dart "$MOCK_FILE"
fi
« no previous file with comments | « samples/github/bin/github.dart ('k') | samples/github/ios/Podfile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698