Change bat to sh
This commit is contained in:
parent
5268fe33b7
commit
500fee0b91
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user