mirror of
https://github.com/zontreck/NBTEditor
synced 2024-11-21 05:25:54 -07:00
Fix windows paths
This commit is contained in:
parent
560c5cf918
commit
2558430718
1 changed files with 6 additions and 6 deletions
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
|
@ -45,21 +45,21 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
script {
|
||||
bat 'del out/.placeholder'
|
||||
bat 'del out\\.placeholder'
|
||||
bat 'flutter pub get'
|
||||
bat 'flutter build windows'
|
||||
|
||||
bat 'dart compile exe -o out/snbt2nbt.exe bin/snbt2nbt.dart'
|
||||
bat 'dart compile exe -o out/nbt2snbt.exe bin/nbt2snbt.dart'
|
||||
bat 'dart compile exe -o out\\snbt2nbt.exe bin\\snbt2nbt.dart'
|
||||
bat 'dart compile exe -o out\\nbt2snbt.exe bin\\nbt2snbt.dart'
|
||||
|
||||
dir("build/windows/x64/runner/Release") {
|
||||
bat 'tar -cvf ../../../../../windows.tgz .'
|
||||
dir("build\\windows\\x64\\runner\\Release") {
|
||||
bat 'tar -cvf ..\\..\\..\\..\\..\\windows.tgz .'
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
archiveArtifacts artifacts: 'out/*', fingerprint: true
|
||||
archiveArtifacts artifacts: 'out\\*', fingerprint: true
|
||||
archiveArtifacts artifacts: '*.tgz', fingerprint: true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue