Remove Klient

This commit is contained in:
s426226 2020-12-03 19:10:36 +01:00
parent c324cdef79
commit b3239e06a2

9
Jenkinsfile vendored
View File

@ -12,9 +12,6 @@ pipeline {
steps {
dir('Serwer') {
sh "~/.dotnet/dotnet restore"
}
dir('Klient') {
sh "~/.dotnet/dotnet restore"
}
}
}
@ -22,9 +19,6 @@ pipeline {
steps {
dir('Serwer') {
sh "~/.dotnet/dotnet clean"
}
dir('Klient') {
sh "~/.dotnet/dotnet clean"
}
}
}
@ -32,9 +26,6 @@ pipeline {
steps {
dir('Serwer') {
sh "~/.dotnet/dotnet build"
}
dir('Klient') {
sh "~/.dotnet/dotnet build"
}
}
}