if echo $PWD | grep "/src/paws/src" > /dev/null 2>&1 
then
	if [ -s /src/paws/src/turninprogress ]
	then
		echo WARNING, turn in progress.
		echo "proceed with co? (y/n) \c"
		read i
		if [ $i = y ]
		then
			:
		else
			echo co aborted.
			exit 1
		fi
	fi
fi
/usr/bin/co $*
