Chromium Code Reviews| Index: third_party/polymer/reproduce.sh |
| diff --git a/third_party/polymer/reproduce.sh b/third_party/polymer/reproduce.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..b88bcc6dd96d0bc3fdb37c56cc66bd5ee223eb9e |
| --- /dev/null |
| +++ b/third_party/polymer/reproduce.sh |
| @@ -0,0 +1,16 @@ |
| +#!/bin/bash |
| + |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +set -e |
| + |
| +rm -rf components |
|
Lei Zhang
2014/09/23 01:02:57
Erm, this depends on your CWD. If you're in src/,
dzhioev (left Google)
2014/09/23 08:43:01
Fixed, scripts makes everything in its own directo
|
| +bower install |
| +find components/web-animations-js/ -type f \ |
|
Lei Zhang
2014/09/23 01:02:57
For each of these find commands, how many files ar
dzhioev (left Google)
2014/09/23 08:43:01
~ 200 files in web-animations-js and 12 files in c
|
| + -not \( -name web-animations.js -o \ |
| + -name README.md -o \ |
| + -name COPYING \) -delete |
| +find components/web-animations-js/ -type d -empty -delete |
| +find components/core-list -type f -exec chmod -x {} \; |