This repository was archived by the owner on Mar 25, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed
Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 33.project
44.idea /
55* .iml
6+ site-content /
Original file line number Diff line number Diff line change 11# jclouds
22
3- This repository supports the GitHub Pages site for jclouds. See and read more at [ http://www.jclouds.org ] ( http://www.jclouds.org ) .
3+ This repository supports the GitHub Pages site for jclouds. See and read more at [ http://www.jclouds.org ] ( http://www.jclouds.org ) .
4+
5+ To deploy web site to ASF:
6+ * have jekyll installed
7+ * sh ./deploy-site.sh $uid $pwd (with $uid yout ASF account $pwd your ASF password)
8+
Original file line number Diff line number Diff line change 1+ jekyll build
2+ if [ ! -d " site-content" ]; then
3+ svn co https://svn.apache.org/repos/asf/incubator/jclouds/site-content
4+ else
5+ svn up site-content
6+ fi
7+ cp -r _site/* site-content/
8+ # jekyll copy site-content to _site so remove it
9+ rm -rf site-content/site-content
10+ rm site-content/deploy-site.sh
11+ # add new files
12+ cd site-content
13+ svn st | grep ? | awk ' {print $2}' | xargs svn --no-auto-props add {} \;
14+ svn ci --no-auth-cache --username $1 --password $2 -m' deploy jclouds site content'
You can’t perform that action at this time.
0 commit comments