From c3b0e4c7e136a88c989efc169a7716c558737fce Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 4 Feb 2006 05:33:22 +0000 Subject: touchup code so we handle errors better svn path=/main/trunk/; revision=2653 --- bin/newbin | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bin/newbin') diff --git a/bin/newbin b/bin/newbin index a5749ce26..699b9a687 100755 --- a/bin/newbin +++ b/bin/newbin @@ -3,11 +3,11 @@ # Distributed under the terms of the GNU General Public License v2 # $Id: /var/cvsroot/gentoo-src/portage/bin/newbin,v 1.7 2004/10/04 13:56:50 vapier Exp $ -if [ -z "${T}" ] || [ -z "${2}" ] ; then - echo "Nothing defined to do." +if [[ -z ${T} ]] || [[ -z ${2} ]] ; then + echo "$0: Need two arguments, old file and new file" 1>&2 exit 1 fi -rm -rf "${T}/${2}" -cp "${1}" "${T}/${2}" -dobin "${T}/${2}" +rm -rf "${T}/${2}" && \ +cp -f "${1}" "${T}/${2}" && \ +exec dobin "${T}/${2}" -- cgit v1.2.3-1-g7c22