forked from fin-hypergrid/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gp.sh
executable file
·67 lines (53 loc) · 1.91 KB
/
gp.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash -e
#
# @license
# Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
# This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
# The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
# The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
# Code distributed by Google as part of the polymer project is also
# subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
#
# This script pushes a demo-friendly version of your element and its
# dependencies to gh-pages.
# usage gp Polymer core-item [branch]
# Run in a clean directory passing in a GitHub org and repo name
org="openfin"
repo="fin-hypergrid"
branch="master" # default to master when branch isn't specified
#delete existing temp and recreate it, them move there
rm -rf ../temp
mkdir ../temp
cd ../temp
# make folder (same as input, no checking!)
mkdir $repo
#git clone [email protected]:$org/$repo.git --single-branch
git clone http://github.com/$org/$repo.git --single-branch
# switch to gh-pages branch
pushd $repo >/dev/null
git checkout --orphan gh-pages
# remove all content
git rm -rf -q .
# use bower to install runtime deployment
bower cache clean $repo # ensure we're getting the latest from the desired branch.
echo "{
\"name\": \"$repo#gh-pages\",
\"private\": true
}
" > bower.json
echo "{
\"directory\": \"components\"
}
" > .bowerrc
git clone http://github.com/$org/$repo.git components/$repo
pwd
rm -rf components/$repo/.git
# copy all dependencies while excluding this directory...
rsync -r --exclude=temp --exclude=$repo ../../ ./components/
# redirect by default to the component folder
echo "<META http-equiv="refresh" content=\"0;URL=components/$repo/\">" >index.html
# send it all to github
git add -A .
git commit -am 'seed gh-pages'
git push -u origin gh-pages --force
popd >/dev/null