aboutsummaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorglarkin <glarkin@FreeBSD.org>2011-12-10 07:26:58 +0800
committerglarkin <glarkin@FreeBSD.org>2011-12-10 07:26:58 +0800
commit6b17e9222456a73ef9164e6b23b2e7e49848db6f (patch)
tree5a5e4d877319730a9f97ccd37c130eb501a0b718 /Tools
parent390ac3116f57961cc00347752f0e4b1c2f05376b (diff)
downloadfreebsd-ports-graphics-6b17e9222456a73ef9164e6b23b2e7e49848db6f.tar.gz
freebsd-ports-graphics-6b17e9222456a73ef9164e6b23b2e7e49848db6f.tar.zst
freebsd-ports-graphics-6b17e9222456a73ef9164e6b23b2e7e49848db6f.zip
- Fixed missing end-quote in sed command
- Fixed some grammatical errors in output messages PR: ports/162506 Submitted by: "Conrad J. Sabatier" <conrads@cox.net> Approved by: sobomax (maintainer timeout - 1 month) Feature safe: yes
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/checknewver.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/scripts/checknewver.sh b/Tools/scripts/checknewver.sh
index 2368ac7311a..9752e191ed0 100755
--- a/Tools/scripts/checknewver.sh
+++ b/Tools/scripts/checknewver.sh
@@ -70,7 +70,7 @@ PV_PATR=`echo ${PORTVERSION} | sed 's=\.=\\\\.=g'`
for DISTNAME in ${DISTFILES}; do
DF_PATR=`echo ${DISTNAME} | sed "s=${PV_PATR}=.*=" | \
sed 's=\.=\\\\.=g ; s=\\\.\*=.*='`
- DF_CHECK=`echo ${DISTNAME} | sed 's=\.=\\\\.=g`
+ DF_CHECK=`echo ${DISTNAME} | sed 's=\.=\\\\.=g'`
if [ x"${DF_PATR}" = x"${DF_CHECK}" ]; then
display_warn "Couldn't construct searching pattern - ${DISTNAME} ignored."
else
@@ -80,7 +80,7 @@ for DISTNAME in ${DISTFILES}; do
done
if [ x"${F_DISTFILES}" = x"" ]; then
- display_warn "Nothing to check - exitting."
+ display_warn "Nothing to check - exiting."
exit 0
fi
@@ -102,7 +102,7 @@ done
if [ x"${NEW}" != x"" ]; then
display_msg ""
- display_msg "Hmm, is seems that there is newest version(s) at:"
+ display_msg "Hmm, is seems that there is a newer version(s) at:"
echo "${NEW}" | xargs -n1 echo
display_msg ""
fi