diff options
Diffstat (limited to 'semanticscuttle-dl')
-rwxr-xr-x | semanticscuttle-dl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/semanticscuttle-dl b/semanticscuttle-dl new file mode 100755 index 0000000..c4f1e50 --- /dev/null +++ b/semanticscuttle-dl @@ -0,0 +1,28 @@ +#!/bin/bash +# +# SemanticScuttle simple upgrader. +# + +BASENAME="`basename $0`" +PREVIOUS="$1" +CURRENT="$2" + +if [ -z "$CURRENT" ]; then + echo "usage: $BASENAME <previous> <current>" + exit 1 +fi + +wget http://downloads.sourceforge.net/project/semanticscuttle/SemanticScuttle/v0.98/SemanticScuttle-$CURRENT.zip && \ +unzip SemanticScuttle-$CURRENT.zip && \ +rm SemanticScuttle-$CURRENT.zip && \ +cp -a SemanticScuttle-$PREVIOUS/data/config.php SemanticScuttle-$CURRENT/data/ && \ +rm site && \ +ln -s SemanticScuttle-$CURRENT/www site && \ +echo "Audit:" && \ +du -hs SemanticScuttle-$PREVIOUS && \ +du -hs SemanticScuttle-$CURRENT + +if [ -d "patches" ]; then + echo "Check and apply the following patches manually:" + find patches +fi |