Skip to content

Commit

Permalink
Use sh
Browse files Browse the repository at this point in the history
  • Loading branch information
georgewfraser committed Feb 14, 2019
1 parent 6bfbf79 commit e242d2b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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
- sh: dotnet test

0 comments on commit e242d2b

Please sign in to comment.