From: Derrick Brashear Date: Wed, 3 Feb 2010 21:49:23 +0000 (-0500) Subject: macos installer scripts shouldn't echo X-Git-Tag: openafs-devel-1_5_72~46 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=8419da9ffec8297759e2e4198eb3963d1d1ed843;p=packages%2Fo%2Fopenafs.git macos installer scripts shouldn't echo remove the other echoes from these scripts Change-Id: I46b43aabc0f6080f776e2ec610d748920bc18d3b Reviewed-on: http://gerrit.openafs.org/1227 Reviewed-by: Simon Wilkinson Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/src/packaging/MacOS/InstallationCheck.10 b/src/packaging/MacOS/InstallationCheck.10 index 26e98d8cb..35083617a 100644 --- a/src/packaging/MacOS/InstallationCheck.10 +++ b/src/packaging/MacOS/InstallationCheck.10 @@ -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 diff --git a/src/packaging/MacOS/InstallationCheck.8 b/src/packaging/MacOS/InstallationCheck.8 index fd32410a5..783335c61 100644 --- a/src/packaging/MacOS/InstallationCheck.8 +++ b/src/packaging/MacOS/InstallationCheck.8 @@ -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 diff --git a/src/packaging/MacOS/InstallationCheck.9 b/src/packaging/MacOS/InstallationCheck.9 index 8a0d0ecf0..53a7fdc96 100644 --- a/src/packaging/MacOS/InstallationCheck.9 +++ b/src/packaging/MacOS/InstallationCheck.9 @@ -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