summaryrefslogtreecommitdiff
path: root/regress/simulation/reset_lib.sh
blob: 4911d4010f67954bfbef7d2bd7f55e3c85c404ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
#
# $FML: reset_lib.sh,v 1.1 2003/02/11 13:23:14 fukachan Exp $
#

today=`date +%C%y%m%d`

version=7.98.1

if [ ! -d /usr/local/lib/fml/$version-$today/ ]; then
	sh install.sh
fi

sudo rsync -C -av lib/ /usr/local/lib/fml/$version-$today/ ; 

exit 0