1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-22 20:58:34 +01:00

apparently rm by pattern is not a thing??

This commit is contained in:
Ellpeck 2020-02-21 13:50:41 +01:00
parent 1c708bab2b
commit 400613e1b9

2
Jenkinsfile vendored
View file

@ -12,7 +12,7 @@ done'''
stage('Pack') {
steps {
sh 'rm **/*.nupkg'
sh 'find . -type f -name \'*.nupkg\' -delete'
sh '''for i in **/MLEM*.csproj; do
dotnet pack $i --version-suffix ${BUILD_NUMBER}
done'''