Fix paths

This commit is contained in:
zontreck 2024-07-21 20:26:02 -07:00
parent fcc9be39a5
commit 42806ffdf2

5
Jenkinsfile vendored
View file

@ -44,12 +44,13 @@ pipeline {
steps { steps {
script { script {
bat ''' bat '''
flutter pub get
flutter build windows flutter build windows
dart compile exe -o out/snbt2nbt.exe bin/snbt2nbt.dart dart compile exe -o out/snbt2nbt.exe bin/snbt2nbt.dart
dart compile exe -o out/nbt2snbt.exe bin/nbt2snbt.dart dart compile exe -o out/nbt2snbt.exe bin/nbt2snbt.dart
cd build/windows/x64/release/bundle cd build/windows/x64/runner/Release
tar -cvf ../../../../bundle/windows.tgz . tar -cvf ../../../../../windows.tgz .
''' '''
} }
} }