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

Unified Diff: sdk/bin/pub

Issue 17063019: Don't run pub in checked mode in the built SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Run pub unchecked in the repo too. Created 7 years, 6 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 | « no previous file | sdk/bin/pub.bat » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/bin/pub
diff --git a/sdk/bin/pub b/sdk/bin/pub
index 364308575a70b78b474370ad71ba9da071876103..231da3ebc4cbc2580e647e355e622608a6fa7ab5 100755
--- a/sdk/bin/pub
+++ b/sdk/bin/pub
@@ -17,7 +17,7 @@ SNAPSHOT="$BIN_DIR/snapshots/pub.dart.snapshot"
if test -f "$SNAPSHOT"; then
# We are running the snapshot in the built SDK.
DART="$BIN_DIR/dart"
- exec "$DART" "--checked" "$SNAPSHOT" "$@"
+ exec "$DART" "$SNAPSHOT" "$@"
else
# We are running pub from source in the development repo.
if [ -z "$DART_CONFIGURATION" ];
@@ -39,5 +39,5 @@ else
PUB="$SDK_DIR/lib/_internal/pub/bin/pub.dart"
- exec "$DART" "--checked" "--package-root=$PACKAGES_DIR" "$PUB" "$@"
+ exec "$DART" "--package-root=$PACKAGES_DIR" "$PUB" "$@"
fi
« no previous file with comments | « no previous file | sdk/bin/pub.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698