##// END OF EJS Templates
packaging: print more specific error messages when builddeb fails
muxator -
r40138:f9c5f7b0 default
parent child Browse files
Show More
@@ -49,7 +49,7 b' trap "if [ \'$CLEANUP\' ] ; then rm -r \'$P'
49 49 set -u
50 50
51 51 if [ ! -d .hg ]; then
52 echo 'You are not inside a Mercurial repository!' 1>&2
52 printf "You are inside %s, which is not the root of a Mercurial repository\n" $(pwd) 1>&2
53 53 exit 1
54 54 fi
55 55
@@ -71,7 +71,7 b' changelog=debian/changelog'
71 71
72 72 if [ "$BUILD" ]; then
73 73 if [ -d debian ] ; then
74 echo "Error! debian control directory already exists!"
74 printf "Error! debian control directory already exists at %s/debian\n" $(pwd)
75 75 exit 1
76 76 fi
77 77
General Comments 0
You need to be logged in to leave comments. Login now