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

Unified Diff: pkg/compiler/tool/status_files/update_all.sh

Issue 2996893002: Allow passing a suite argument to the update script (Closed)
Patch Set: Created 3 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/tool/status_files/update_all.sh
diff --git a/pkg/compiler/tool/status_files/update_all.sh b/pkg/compiler/tool/status_files/update_all.sh
index a82bd42a3d29167836fbe8bfb657c0091a52e283..e791573eb5176733068eb9e2e00b1bad503ef2be 100755
--- a/pkg/compiler/tool/status_files/update_all.sh
+++ b/pkg/compiler/tool/status_files/update_all.sh
@@ -32,12 +32,17 @@ function update_suite {
pushd $repodir > /dev/null
./tools/build.py -m release create_sdk
-update_suite dart2js_native
-update_suite dart2js_extra
-update_suite language
-update_suite language_2
-update_suite corelib
-update_suite corelib_2
+
+if [[ $# -ge 1 ]]; then
+ update_suite $1
+else
+ update_suite dart2js_native
+ update_suite dart2js_extra
+ update_suite language
+ update_suite language_2
+ update_suite corelib
+ update_suite corelib_2
+fi
rm -rf $tmp
popd > /dev/null
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698