| 25 | ) |
| 26 | } |
| 27 | |
| 28 | fun bundleNow() { |
| 29 | var v = Launch(root).getSaveFile() |
| 30 | if (v != null) { |
| 31 | if (!v.endsWith(".zip")) v = v+".zip" |
| 32 | // TODO: notification and feedback |
| 33 | val success = saveAndBundle(v); |
| 34 | showInFinder(v) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | fun saveAndBundle(outputTo: String): Boolean { |
nothing calls this directly
no test coverage detected