dummy
This commit is contained in:
parent
31141ebfb7
commit
c3ab5c0d41
1 changed files with 4 additions and 2 deletions
|
@ -11,13 +11,15 @@ pub fn main() !void {
|
||||||
const args = try std.process.argsAlloc(allocator);
|
const args = try std.process.argsAlloc(allocator);
|
||||||
defer std.process.argsFree(allocator, args);
|
defer std.process.argsFree(allocator, args);
|
||||||
|
|
||||||
if (args.len < 3) {
|
if (args.len < 4) {
|
||||||
std.log.err("Usage: {s} <input.bdf> <input.zon> <output-dir>", .{args[0]});
|
std.log.err("Usage: {s} <input.bdf> <input.zon> <output-dir>", .{args[0]});
|
||||||
std.process.exit(1);
|
std.process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
const inputFile = args[1];
|
const inputFile = args[1];
|
||||||
const outputPath = args[2];
|
const inputConfig = args[2];
|
||||||
|
_ = inputConfig; // autofix
|
||||||
|
const outputPath = args[3];
|
||||||
_ = outputPath; // autofix
|
_ = outputPath; // autofix
|
||||||
|
|
||||||
// Read font
|
// Read font
|
||||||
|
|
Loading…
Reference in a new issue