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

Unified Diff: sdk/bin/pub.bat

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 | « sdk/bin/pub ('k') | sdk/bin/pub_developer » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/bin/pub.bat
diff --git a/sdk/bin/pub.bat b/sdk/bin/pub.bat
index 6f0d4e0637ca97ed867c3fed202ebe6851872e3c..03213fd304e26c778c611d8d01b95eb8435637b9 100644
--- a/sdk/bin/pub.bat
+++ b/sdk/bin/pub.bat
@@ -25,9 +25,9 @@ set DART_IN_BUILT_SDK=%BUILD_DIR%\dart-sdk\bin\dart
set SNAPSHOT=%BIN_DIR%\snapshots\pub.dart.snapshot
if exist "%SNAPSHOT%" (
- "%DART%" --checked "%SNAPSHOT%" %*
+ "%DART%" "%SNAPSHOT%" %*
) else (
- "%DART_IN_BUILT_SDK%" --checked --package-root=%PACKAGES_DIR% "%PUB%" %*
+ "%DART_IN_BUILT_SDK%" --package-root=%PACKAGES_DIR% "%PUB%" %*
)
endlocal
« no previous file with comments | « sdk/bin/pub ('k') | sdk/bin/pub_developer » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698