macos installer scripts shouldn't echo
authorDerrick Brashear <shadow@dementia.org>
Wed, 3 Feb 2010 21:49:23 +0000 (16:49 -0500)
committerDerrick Brashear <shadow|account-1000005@unknown>
Wed, 3 Feb 2010 23:59:16 +0000 (15:59 -0800)
remove the other echoes from these scripts

Change-Id: I46b43aabc0f6080f776e2ec610d748920bc18d3b
Reviewed-on: http://gerrit.openafs.org/1227
Reviewed-by: Simon Wilkinson <sxw@inf.ed.ac.uk>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>

src/packaging/MacOS/InstallationCheck.10
src/packaging/MacOS/InstallationCheck.8
src/packaging/MacOS/InstallationCheck.9

index 26e98d8..3508361 100644 (file)
@@ -1,6 +1,5 @@
 #!/bin/sh
 majorvers=`uname -r | sed 's/\..*//'`
-echo "InstallationCheck: os release is $majorvers"
 if [ $majorvers -ne 10 ]; then
        exit 112
 fi
index fd32410..783335c 100644 (file)
@@ -1,6 +1,5 @@
 #!/bin/sh
 majorvers=`uname -r | sed 's/\..*//'`
-echo "InstallationCheck: os release is $majorvers"
 if [ $majorvers -ne 8 ]; then
        exit 112
 fi
index 8a0d0ec..53a7fdc 100644 (file)
@@ -1,6 +1,5 @@
 #!/bin/sh
 majorvers=`uname -r | sed 's/\..*//'`
-echo "InstallationCheck: os release is $majorvers"
 if [ $majorvers -ne 9 ]; then
        exit 112
 fi