You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dlib/docs/testenv_rel

25 lines
435 B

#/bin/sh
#
#This script checks to make sure all the commands we need are
#present
return_error()
{
echo "Error, can't run the $1 command"
exit 1
}
./testenv
echo Testing environment for needed release building utilities
#flip -h > /dev/null || return_error "flip";
unix2dos -h &> /dev/null || return_error "unix2dos";
#wine --help &> /dev/null || return_error "wine";
echo All needed utilities found
exit 0