File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 33# Generates documentation and pushes it up to the site
44# WARNING: Do NOT run this script unless you have remote `upstream` set properly
55#
6- rm -rf tmp/docs && npm run build_docs && git checkout gh-pages && git fetch upstream && git rebase upstream/gh-pages && cp -r ./tmp/docs/ ./ && rm -rf tmp/ && git add . && git commit -am " chore(docs): docs generated automatically" && git push upstream gh-pages
6+ rm -rf tmp/docs && \
7+ npm run build_docs && \
8+ git checkout gh-pages && \
9+ git fetch upstream && \
10+ git rebase upstream/gh-pages && \
11+ cp -r ./tmp/docs/ ./ && \
12+ rm -rf tmp/ && \
13+ git add . && \
14+ git commit -am " chore(docs): docs generated automatically" && \
15+ git push upstream gh-pages
You can’t perform that action at this time.
0 commit comments