Check for changelog existence
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 18 Jun 2013 11:47:55 +0000 (13:47 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 18 Jun 2013 11:47:55 +0000 (13:47 +0200)
id-deb-build/mkdist.sh

index 2aa0d5a..52ef1e9 100755 (executable)
@@ -19,9 +19,11 @@ DEBCHANGELOG=debian/changelog
 
 if [ "x$NAME" != x ]; then
   echo "Got name $NAME from IDMETA file"
-else
+elif test -f $DEBCHANGELOG; then
   NAME=`head -1 $DEBCHANGELOG|sed 's/ .*//g'`
   echo "Warning: assuming name $NAME from $DEBCHANGELOG"
+else
+  die "No $DEBCHANGELOG and no NAME in IDMETA"
 fi
 
 if [ "x$2" != x ]; then