summaryrefslogtreecommitdiff
path: root/regress/simulation
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-07-20 00:01:58 +0000
committerfukachan <fukachan>2005-07-20 00:01:58 +0000
commit8295ed65d40f99906e12bfb945cf51be18d09ce8 (patch)
treeb1a2b6fd6a791c894e02ec7d5b1e0107fc0dcbfc /regress/simulation
parent28817fd7c04485ae28b36add35f2efc82a205e2a (diff)
downloadfml8-8295ed65d40f99906e12bfb945cf51be18d09ce8.tar.gz
fml8-8295ed65d40f99906e12bfb945cf51be18d09ce8.tar.bz2
fml8-8295ed65d40f99906e12bfb945cf51be18d09ce8.zip
current -> 7.98.1
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