diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2011-12-09 23:26:58 +0000 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2011-12-09 23:26:58 +0000 |
commit | 270c28b6ae8d254c2fba3b4cc4cd590ddf015bc1 (patch) | |
tree | 763fac5eb125f464dd125d1017e93d209e2ca98c /Tools | |
parent | 05f95619557334f388d499550ab8e056e2f55ef4 (diff) | |
download | ports-270c28b6ae8d254c2fba3b4cc4cd590ddf015bc1.tar.gz ports-270c28b6ae8d254c2fba3b4cc4cd590ddf015bc1.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/checknewver.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/scripts/checknewver.sh b/Tools/scripts/checknewver.sh index 2368ac7311a7..9752e191ed0a 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 |