##// END OF EJS Templates
Add the igrid help files to the list of data files...
Add the igrid help files to the list of data files to be installed alongside igrid.

File last commit:

r314:fe5fa758
r545:e1046222
Show More
bkp.sh
22 lines | 451 B | application/x-sh | BashLexer
#!/bin/sh
# Simple backup script for ipython, to keep around a static copy of the whole
# project at the current version point. We do this by exporting from SVN.
# Config here
IPYTHONSVN=$HOME/ipython/svn/ipython/trunk
BACKUPDIR=$HOME/ipython/backup
####
# Code begins
IPVERSION=`ipython -Version`
IPX=ipython-$IPVERSION
ARCHIVE=$BACKUPDIR/$IPX.tgz
svn export $IPYTHONSVN $IPX
tar czf $ARCHIVE $IPX
rm -rf $IPX
echo "Backup left in: $ARCHIVE"