added a deploy script that can be used to deploy yacy releases into the current release for testing

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7768 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 14 years ago
parent 265b7ce4f9
commit d0d6123b18

@ -0,0 +1,15 @@
#!/bin/bash
cd "`dirname $0`"
cd ..
./stopYACY.sh
#./killYACY.sh
cd DATA/RELEASE/
rm ../../lib/*
rm -Rf yacy
tar xfz `basename $1`
cp -Rf yacy/* ../../
rm -Rf yacy
cd ../../
chmod 755 *.sh
chmod 755 bin/*.sh
nohup ./startYACY.sh -l
Loading…
Cancel
Save