summaryrefslogtreecommitdiff
path: root/regress/simulation
diff options
context:
space:
mode:
Diffstat (limited to 'regress/simulation')
-rwxr-xr-xregress/simulation/reset_lib.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/regress/simulation/reset_lib.sh b/regress/simulation/reset_lib.sh
index b7e697b2..4911d401 100755
--- a/regress/simulation/reset_lib.sh
+++ b/regress/simulation/reset_lib.sh
@@ -1,14 +1,16 @@
#!/bin/sh
#
-# $FML$
+# $FML: reset_lib.sh,v 1.1 2003/02/11 13:23:14 fukachan Exp $
#
today=`date +%C%y%m%d`
-if [ ! -d /usr/local/lib/fml/current-$today/ ]; then
+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/current-$today/ ;
+sudo rsync -C -av lib/ /usr/local/lib/fml/$version-$today/ ;
exit 0