From 458ae70bd6296a8e385c4c2cd9b79e8aef1e9d43 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 10 Jul 2013 12:08:19 +0000 Subject: [PATCH] Look for .in files in same directory as update-archive.sh --- update-archive/update-archive.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/update-archive/update-archive.sh b/update-archive/update-archive.sh index 1cec276..5705cdd 100755 --- a/update-archive/update-archive.sh +++ b/update-archive/update-archive.sh @@ -1,6 +1,13 @@ #!/bin/sh -if test ! -f apt-ftparchive.conf.in; then - echo "$0: apt-ftparchive.conf.in must be located in current directory" +D0=`dirname $0` +confdir=`cd $D0; pwd` + +if test ! -f ${confdir}/apt-ftparchive.conf.in; then + echo "$0: ${condir}/apt-ftparchive.conf.in not found" + exit 1 +fi +if test ! -f ${confdir}/apt-release.conf.in; then + echo "$0: ${condir}/apt-release.conf.in not found" exit 1 fi @@ -11,7 +18,6 @@ fi # gpg -a -d -o Release.gpg Release -confdir=`pwd` architectures="i386 amd64" -- 1.7.10.4