Change bat to sh

This commit is contained in:
s426226 2020-12-03 16:16:02 +01:00
parent 5268fe33b7
commit 500fee0b91

6
Jenkinsfile vendored
View File

@ -5,21 +5,21 @@ pipeline {
stage('Restore') {
steps {
dir('Serwer') {
bat "dotnet restore"
sh "dotnet restore"
}
}
}
stage('Clean') {
steps {
dir('Serwer') {
bat "dotnet clean"
sh "dotnet clean"
}
}
}
stage('Build') {
steps {
dir('Serwer') {
bat "dotnet build --configuration Relase"
sh "dotnet build --configuration Relase"
}
}
}