We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5bf5c2 commit 8b8b4cbCopy full SHA for 8b8b4cb
build.zig
@@ -46,7 +46,7 @@ pub fn build(b: *std.Build) !void {
46
if (config.app_runtime != .none) {
47
exe.install();
48
resources.install();
49
- if (builtin.target.os.tag != .freebsd) i18n.install();
+ i18n.install();
50
}
51
52
// Libghostty
src/os/i18n.zig
@@ -70,7 +70,7 @@ pub const InitError = error{
70
pub fn init(resources_dir: []const u8) InitError!void {
71
// i18n is unsupported on Windows
72
switch (builtin.os.tag) {
73
- .windows, .freebsd => return,
+ .windows => return,
74
else => {
75
// Our resources dir is always nested below the share dir that
76
// is standard for translations.
0 commit comments