From e2e78ccd0aedb87f030a01419808b0b2cb489059 Mon Sep 17 00:00:00 2001 From: em Date: Tue, 6 Nov 1984 10:02:25 +0000 Subject: [PATCH] The line with the user message for failure missed the call to echo. --- mach/install | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mach/install b/mach/install index 0358e56f4..16dcaa9c3 100755 --- a/mach/install +++ b/mach/install @@ -1,7 +1,12 @@ MACH=`(cd .. ; basename \`pwd\`)` -if cp $1 ../../../lib/${MACH}/$1 +if cp $1 ../../../lib/${MACH}/$1 >/dev/null 2>&1 || + { rm -f ../../../lib/${MACH}/$1 >/dev/null 2>&1 && + cp $1 ../../../lib/${MACH}/$1 >/dev/null 2>&1 + } then set - ranlib ../../../lib/${MACH}/$1 >/dev/null 2>&1 exit 0 +else + echo Sorry, can not create "lib/${MACH}/$1". fi -- 2.34.1