summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-05-11 04:22:03 +0200
committerDave Reisner <dreisner@archlinux.org>2014-09-22 14:25:43 +0200
commit651f8f834ff4076ece781d276cdc60137c961081 (patch)
treed310d948fee7a551a36b90a05211ed4783bd1060
parentd83805bc54b04d8c63982784e1a220a2bd87e3b0 (diff)
downloaddevtools-651f8f834ff4076ece781d276cdc60137c961081.tar.gz
devtools-651f8f834ff4076ece781d276cdc60137c961081.tar.xz
arch-nspawn: Fix a grammar mistake (a/an) in an error message.
-rw-r--r--arch-nspawn.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch-nspawn.in b/arch-nspawn.in
index 1879442..b85d360 100644
--- a/arch-nspawn.in
+++ b/arch-nspawn.in
@@ -84,7 +84,7 @@ umask 0022
# Sanity check
if [[ ! -f "$working_dir/.arch-chroot" ]]; then
- die "'%s' does not appear to be a Arch chroot." "$working_dir"
+ die "'%s' does not appear to be an Arch chroot." "$working_dir"
elif [[ $(cat "$working_dir/.arch-chroot") != $CHROOT_VERSION ]]; then
die "chroot '%s' is not at version %s. Please rebuild." "$working_dir" "$CHROOT_VERSION"
fi