- Added script to copy the latest Scyther version to the ecss
repository.
This commit is contained in:
parent
d2ac518234
commit
8c04a7517c
15
src/copy2ecss.sh
Executable file
15
src/copy2ecss.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
SVNDIR=https://svn.win.tue.nl/repos/ecss/trunk/protocols/spdl/scyther
|
||||||
|
TMPDIR=/tmp/ecsslatesscyther
|
||||||
|
VERSIONFILE=$TMPDIR/version.txt
|
||||||
|
SCYTHER=$TMPDIR/scyther
|
||||||
|
|
||||||
|
rm -rf $TMPDIR
|
||||||
|
svn co $SVNDIR $TMPDIR
|
||||||
|
cp scyther $SCYTHER
|
||||||
|
$SCYTHER --version >$VERSIONFILE
|
||||||
|
cat $VERSIONFILE
|
||||||
|
svn commit --file $VERSIONFILE $SCYTHER
|
||||||
|
|
||||||
|
echo "Committed this version to the ECSS repository."
|
Loading…
Reference in New Issue
Block a user