This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-toolbuilder-cil/scripts/setup.sh
2022-04-02 19:14:52 -05:00

12 lines
170 B
Bash
Executable file

#!/usr/bin/env sh
cd $(dirname $0)/..
# Make sure we have .NET installed
if ! which dotnet >& /dev/null
then
echo "Cannot find 'dotnet' in the path"
exit 1
fi