From c1e61eaecb66ad9acabd4b944497c946c6fc3cd1 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 21 Aug 2016 10:50:49 +1200 Subject: Remove single quotes within vr() subshell --- sh/shrc.d/vr.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sh/shrc.d/vr.sh') diff --git a/sh/shrc.d/vr.sh b/sh/shrc.d/vr.sh index b8a31aee..1902e3ba 100644 --- a/sh/shrc.d/vr.sh +++ b/sh/shrc.d/vr.sh @@ -24,8 +24,8 @@ vr() { # Ask Mercurial the top level (great) hg root 2>/dev/null && exit - # If we can get SVN info, iterate upwards until we can't; hopefully - # that's the root (bad) + # If we can get SVN info, iterate upwards until we cannot; hopefully + # that is the root (bad) while svn info >/dev/null 2>&1 ; do root=$PWD [ "$root" = / ] && break @@ -36,7 +36,7 @@ vr() { exit fi - # Couldn't find repository root, say so + # Could not find repository root, say so printf >&2 'vr(): Failed to find repository root\n' exit 1 )" -- cgit v1.2.3