From 3d5d1606351462e918f9bea976dc6ef57aa20000 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Sun, 25 Oct 2015 14:19:52 +0100 Subject: [PATCH] * lrde-upload.sh: Delete. --- lrde-upload.sh | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 lrde-upload.sh diff --git a/lrde-upload.sh b/lrde-upload.sh deleted file mode 100755 index 5a6968757..000000000 --- a/lrde-upload.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -# This file is run by the LRDE autobuilder after a successful compilation. -# It is not meant to be distributed with Spot. - -set -e -set -x - -# Buildbot will tell us the name of the branch being compiled using $1. -rev=$1 - -# Retrieve the package version -VERSION=`autoconf --trace='AC_INIT:$2'` - -DEST=/lrde/dload/spot/snapshots/ - -umask 022 - -rm -rf $DEST/$rev.tmp -mkdir -p $DEST/$rev.tmp -cp -pR doc/spot.html $DEST/$rev.tmp -chmod -R a+rX $DEST/$rev.tmp -mv -f spot-$VERSION.tar.gz $DEST/$rev.tar.gz -chmod a+rX $DEST/$rev.tar.gz -rm -rf $DEST/$rev.html -mv -f $DEST/$rev.tmp $DEST/$rev.html