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

Unified Diff: dart/pkg/shadow_dom/tool/build.sh

Issue 59073003: Version 0.8.10.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | « dart/pkg/shadow_dom/tool/build.json ('k') | dart/runtime/bin/builtin.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/pkg/shadow_dom/tool/build.sh
===================================================================
--- dart/pkg/shadow_dom/tool/build.sh (revision 29808)
+++ dart/pkg/shadow_dom/tool/build.sh (working copy)
@@ -16,7 +16,9 @@
POLYMER_REMOTE=https://github.com/Polymer
POLYMER_DIR=../../../third_party/polymer
-for NAME in ShadowDOM observe-js WeakMap; do
+NEWLINE=$'\n'
+REVISIONS=""
+for NAME in ShadowDOM observe-js WeakMap platform; do
GIT_REMOTE="$POLYMER_REMOTE/$NAME.git"
GIT_DIR="$POLYMER_DIR/$NAME"
echo "*** Syncing $GIT_DIR from $GIT_REMOTE"
@@ -28,6 +30,9 @@
else
git clone $GIT_REMOTE $GIT_DIR
fi
+ pushd $GIT_DIR > /dev/null
+ REVISIONS="$REVISIONS $NEWLINE $NAME is at revision `git rev-parse HEAD`"
+ popd
done
echo '*** Installing NPM prerequisites'
@@ -35,3 +40,5 @@
echo '*** Running grunt'
grunt
+
+echo "*** Revision hash to use in commit message: $REVISIONS"
« no previous file with comments | « dart/pkg/shadow_dom/tool/build.json ('k') | dart/runtime/bin/builtin.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698