#!/bin/sh
#
# getColorScheme - Used to determine what X Resource file to use
#

# Override the Linux script on the build machine to force gray color
# scheme as the default for binary distributions.

OS=`uname`

if [ "$OS" = "Linux" ]
then
	echo gray

	F=/tmp/TreepsBuild.log

	echo date >> $F
	echo "Override color scheme to be gray"  >> $F
fi
