File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,8 @@ pub fn main() !void {
142
142
else = > | e | return e ,
143
143
};
144
144
145
+ try converter .beautifyLua (settings .output_folder_path , allocator );
146
+
145
147
// TODO: Run .convert() in a separate thread, letting it update a passed Progress struct so we can update a progress bar here?
146
148
// TODO: Check if std/Progress.zig is of use: https://ziglang.org/documentation/master/std/src/std/Progress.zig.html
147
149
// TODO: Look at this example of multithreading in Zig: https://gist.github.com/cabarger/d3879745b8477670070f826cad2f027d
@@ -175,7 +177,7 @@ pub fn main() !void {
175
177
defer arena .deinit ();
176
178
var allocator = arena .allocator ();
177
179
178
- try converter .zip_mods (settings .input_folder_path , settings .output_folder_path , allocator );
180
+ try converter .zipMods (settings .input_folder_path , settings .output_folder_path , allocator );
179
181
180
182
std .debug .print ("Done zipping!\n " , .{});
181
183
}
You can’t perform that action at this time.
0 commit comments