Corrected check on patches/series

This commit is contained in:
Ruben Rodriguez 2021-06-25 14:06:07 -04:00
parent 6f8470c30a
commit 441ac7fab1

View file

@ -183,7 +183,9 @@ cd source
compile(){ compile(){
# Make sure the series file is formated correctly after removals # Make sure the series file is formated correctly after removals
grep -q [a-z] debian/patches/series || echo -n > debian/patches/series if [ -f debian/patches/series ]; then
grep -q [a-z] debian/patches/series || echo -n > debian/patches/series
fi
if [ 1$QUILT != 1skip ]; then if [ 1$QUILT != 1skip ]; then
export QUILT_PATCHES=debian/patches export QUILT_PATCHES=debian/patches