Skip to content

Commit 73e4cf3

Browse files
committed
fix: options' names
1 parent 16d5e3b commit 73e4cf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ pub fn build(b: *std.Build) void {
66
const version = std.SemanticVersion{ .major = 4, .minor = 4, .patch = 1 };
77

88
// Custom options
9-
const use_curl = b.option(bool, "use-curl", "Enable remote file access") orelse false;
10-
const use_bz2 = b.option(bool, "use-bz2", "Enable reading bzip2-compressed files") orelse false;
9+
const use_curl = b.option(bool, "use_curl", "Enable remote file access") orelse false;
10+
const use_bz2 = b.option(bool, "use_bz2", "Enable reading bzip2-compressed files") orelse false;
1111

1212
// Dependencies
1313
const cfitsio_dep = b.dependency("cfitsio", .{});

0 commit comments

Comments
 (0)