Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
f87cea82
Commit
f87cea82
authored
Jul 28, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update script for updating gh-pages
parent
8f2f8a2b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
.gitignore
.gitignore
+1
-0
scripts/update_gh-pages.sh
scripts/update_gh-pages.sh
+6
-8
No files found.
.gitignore
View file @
f87cea82
...
@@ -12,4 +12,5 @@ lib/*
...
@@ -12,4 +12,5 @@ lib/*
manual/build-pdf/*
manual/build-pdf/*
manual/build-html/*
manual/build-html/*
manual/*.toc
manual/*.toc
manual/manual.html
*.swp
*.swp
scripts/update_gh-pages.sh
View file @
f87cea82
...
@@ -12,11 +12,9 @@ if [ ! -d ../gh-pages ]; then
...
@@ -12,11 +12,9 @@ if [ ! -d ../gh-pages ]; then
fi
fi
echo
"build documentation ..."
echo
"build documentation ..."
make doc &>/dev/null
make doc &>/dev/null
||
ninja
-C
build doc &>/dev/null
||
exit
if
[
-f
manual.pdf
]
;
then
if
[
!
-f
manual/manual.pdf
]
;
then
echo
"PDF manual found ..."
else
echo
"no PDF manual found ... stop"
echo
"no PDF manual found ... stop"
exit
exit
fi
fi
...
@@ -29,10 +27,10 @@ make html &>/dev/null
...
@@ -29,10 +27,10 @@ make html &>/dev/null
echo
"copy documentation into gh-pages ..."
echo
"copy documentation into gh-pages ..."
cd
../../gh-pages
cd
../../gh-pages
rm
-f
*
.tex
*
.html
*
.css
*
.png
*
.js manual/manual.pdf manual/index.html
rm
-f
*
.tex
*
.html
*
.css
*
.png
*
.js manual/manual.pdf manual/index.html
cp
-R
../
libcppa
/html/
*
.
cp
-R
../
actor-framework
/html/
*
.
mkdir
manual
mkdir
manual
cp
../
libcppa
/manual.pdf manual/
cp
../
actor-framework/manual
/manual.pdf manual/
cp
../
libcppa
/manual/manual.html manual/index.html
cp
../
actor-framework
/manual/manual.html manual/index.html
echo
"commit ..."
echo
"commit ..."
git add
.
git add
.
...
@@ -41,4 +39,4 @@ git commit -a -m "documentation update"
...
@@ -41,4 +39,4 @@ git commit -a -m "documentation update"
echo
"push ..."
echo
"push ..."
git push
git push
cd
../
libcppa
cd
../
actor-framework
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment