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

23 lines
363 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2022-04-02 21:42:32 +00:00
cd $(dirname $0)/..
2022-04-02 21:42:32 +00:00
# Make sure we have .NET installed.
2022-04-02 21:42:32 +00:00
if ! which dotnet >& /dev/null
then
echo "Cannot find 'dotnet' in the path"
exit 1
fi
# Make sure we have lefthook.and it is installed.
if ! which lefthook >& /dev/null
then
echo "Cannot find 'lefthook' in the path"
exit 1
fi
lefthook install
# Everything is good.
exit 0