NBTEditor/compile.sh

8 lines
178 B
Bash
Raw Normal View History

2024-06-07 00:08:32 -07:00
#!/bin/bash
flutter build linux
2024-07-02 23:27:15 -07:00
dart compile exe -o out/nbt2snbt bin/nbt2snbt.dart
dart compile exe -o out/snbt2nbt bin/snbt2nbt.dart
2024-07-02 23:27:15 -07:00
2024-07-02 23:28:56 -07:00
rm out/*.snbt || true
rm out/*.nbt || true