From 99101cd519300b67c7112de0ffa77cf61acf564d Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 8 Feb 2019 00:27:49 +0000 Subject: [PATCH] [ci] Display version of mono --- build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;