blob: 077b9525c0127c9bb55064b2b4ecaf0805a2ede3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Displays an error message when the $SERIES file does not exist and when run
in verbose mode.
Closes: #369908
Status wrt upstream: not submitted.
---
quilt/scripts/patchfns.in | 3 +++
1 file changed, 3 insertions(+)
--- a/quilt/scripts/patchfns.in
+++ b/quilt/scripts/patchfns.in
@@ -323,6 +323,9 @@ cat_series()
sed -e '/^#/d' -e 's/^[ '$'\t'']*//' \
-e 's/[ '$'\t''].*//' -e '/^$/d' $SERIES
else
+ if [ "$opt_verbose" ]; then
+ echo "series file not found: $SERIES" >&2
+ fi
return 1
fi
}
|