From e242d2b237d3f1310bc46624d637774a0afe71ee Mon Sep 17 00:00:00 2001 From: George Fraser Date: Wed, 13 Feb 2019 21:13:04 -0800 Subject: [PATCH] Use sh --- appveyor.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 6e81cf9..78616aa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,17 +1,17 @@ image: -- Visual Studio 2017 - Ubuntu +- Visual Studio 2017 init: - # Good practise, because Windows line endings are different from Unix/Linux ones - - cmd: git config --global core.autocrlf true + # Good practice, because Windows line endings are different from Unix/Linux ones + - sh: git config --global core.autocrlf true before_build: # Display .NET Core version - - cmd: dotnet --version - - cmd: dotnet restore + - sh: dotnet --version + - sh: dotnet restore build_script: - - cmd: dotnet build + - sh: dotnet build before_test: - - cmd: bash scripts/restore.sh + - sh: bash scripts/restore.sh test_script: - - cmd: dotnet test \ No newline at end of file + - sh: dotnet test \ No newline at end of file