summaryrefslogtreecommitdiffstats
path: root/quilt/files.in
diff options
context:
space:
mode:
Diffstat (limited to 'quilt/files.in')
-rw-r--r--quilt/files.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/quilt/files.in b/quilt/files.in
index 9efaac3..6d57efa 100644
--- a/quilt/files.in
+++ b/quilt/files.in
@@ -19,17 +19,17 @@ fi
usage()
{
- echo "Usage: quilt files [-v] [patch]"
+ echo $"Usage: quilt files [-v] [patch]"
if [ x$1 = x-h ]
then
- cat <<EOF
+ echo $"
Print the list of files that the topmost or specified patch
changes.
-v Verbose, more user friendly output.
-EOF
+"
exit 0
else
exit 1
@@ -72,7 +72,7 @@ else
patch=$(top_patch)
if [ -z "$patch" ]
then
- echo "No patches applied" >&2
+ echo $"No patch applied" >&2
exit 1
fi
fi
@@ -81,10 +81,10 @@ if ! is_applied $patch
then
if [ -n "$opt_verbose" ]
then
- echo "Patch is not applied (no verbose output)" >&2
+ echo $"Patch is not applied (no verbose output)" >&2
opt_verbose=0
else
- echo "Patch is not applied" >&2
+ echo $"Patch is not applied" >&2
fi
fi