repo.or.cz
/
svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix compiler warning due to missing function prototype.
[svn.git]
/
tools
/
buildbot
/
slaves
/
i686-debian-sarge1
/
svnlog.sh
blob
d907677ecd09f479046565d195b6a3f22e659009
1
#!/bin/bash
2
3
set -x
4
5
# upload file to server
6
FILENAME
=
tests-
`date +%Y%m%d%H%M`
.log.tgz
7
tar
-czf
$FILENAME
tests.log
8
ftp
-n
www.mobsol.be
<
..
/
ftpscript
9
rm
$FILENAME
10
11
echo
"Logs of the testrun can be found here: http://www.mobsol.be/logs/eh-debsarge1/
$FILENAME
"
12
13
exit
0