The line with the user message for failure missed the call to echo.

This commit is contained in:
em 1984-11-06 10:02:25 +00:00
parent 0d5a4693a7
commit e2e78ccd0a

View file

@ -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