-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Davidsaver
committed
May 26, 2015
1 parent
db2de97
commit 184a932
Showing
5 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
TAG=$1 | ||
|
||
exec git archive --prefix=devlib2-${1}/ --format tar.gz -9 -o devlib2-${1}.tar.gz ${1} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
die() { | ||
echo "$1" | ||
exit 1 | ||
} | ||
|
||
[ "$USER" ] || die "USER not set" | ||
|
||
[ -f documentation/mainpage.h ] || die "Run me in the top level" | ||
|
||
(cd documentation && doxygen) | ||
|
||
rsync -av --delete "$@" documentation/doc/html/ $USER,[email protected]:/home/project-web/epics/htdocs/devlib2/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
die() { | ||
echo "$1" | ||
exit 1 | ||
} | ||
|
||
[ -f "$1" ] || die "usage $0 <tarfile>" | ||
|
||
[ "$USER" ] || die "USER not set" | ||
|
||
[ -f documentation/mainpage.h ] || die "Run me in the top level" | ||
|
||
scp "$1" $USER,[email protected]:/home/frs/project/epics/devlib2/ |