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

Side by Side Diff: third_party/polymer/reproduce.sh

Issue 582873003: Polymer elements added to third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reproduce.sh changes directory before doing things. Created 6 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 set -e
8
9 cd "$(dirname $0)"
Lei Zhang 2014/09/23 21:41:51 You need to put $0 in quotes as well. Otherwise a
10
11 rm -rf components
12 bower install
13 find components/web-animations-js/ -type f \
14 -not \( -name web-animations.js -o \
15 -name README.md -o \
16 -name COPYING \) -delete
17 find components/web-animations-js/ -type d -empty -delete
18 find components/core-list -type f -exec chmod -x {} \;
19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698