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

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

Issue 55363005: update shadow dom pkg (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 | « pkg/shadow_dom/tool/build.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/shadow_dom/tool/build.sh
diff --git a/pkg/shadow_dom/tool/build.sh b/pkg/shadow_dom/tool/build.sh
index b10ebe77d5142223791415c25ae8791c8c991a59..10cd859453c77bc08a2b1c630945bc8f89f9f320 100755
--- a/pkg/shadow_dom/tool/build.sh
+++ b/pkg/shadow_dom/tool/build.sh
@@ -16,7 +16,9 @@ pushd $DIR > /dev/null
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 @@ for NAME in ShadowDOM observe-js WeakMap; do
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 @@ npm install
echo '*** Running grunt'
grunt
+
+echo "*** Revision hash to use in commit message: $REVISIONS"
Siggi Cherem (dart-lang) 2013/11/04 22:49:17 nice =)
« no previous file with comments | « pkg/shadow_dom/tool/build.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698