Skip to content

Commit

Permalink
fix(config): add support for bsd operating systems (#1281)
Browse files Browse the repository at this point in the history
fixes #1273
  • Loading branch information
Squeeeez authored Jan 28, 2024
1 parent 319df47 commit 2bdb89c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lua/neorg/core/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ local function get_os_info()
end
end
return "linux"
elseif os:find("bsd") then
return "bsd"
end

error("[neorg]: Unable to determine the currently active operating system!")
Expand Down

0 comments on commit 2bdb89c

Please sign in to comment.