diff --git a/build b/build index b4ddcb3..fe474e1 100755 --- a/build +++ b/build @@ -47,6 +47,7 @@ function task_setup { task_begin "Checking environment"; check_command git true; + check_command mono true; check_command msbuild true; check_command nuget true; @@ -67,8 +68,9 @@ function task_ci { tasks_run setup; task_begin "Environment Information"; - execute git --version; execute uname -a; + execute git --version; + execute mono --version; execute nuget help | head -n1; task_end 0;