projects
/
git-tools-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10cabf5
)
Check for changelog existence
author
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 18 Jun 2013 11:47:55 +0000
(13:47 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 18 Jun 2013 11:47:55 +0000
(13:47 +0200)
id-deb-build/mkdist.sh
patch
|
blob
|
history
diff --git
a/id-deb-build/mkdist.sh
b/id-deb-build/mkdist.sh
index
2aa0d5a
..
52ef1e9
100755
(executable)
--- a/
id-deb-build/mkdist.sh
+++ b/
id-deb-build/mkdist.sh
@@
-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