blob: b7e697b2c49a30055b7b1b01dfa52042c97d43f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
#
# $FML$
#
today=`date +%C%y%m%d`
if [ ! -d /usr/local/lib/fml/current-$today/ ]; then
sh install.sh
fi
sudo rsync -C -av lib/ /usr/local/lib/fml/current-$today/ ;
exit 0
|