Skip to content

Commit

Permalink
fix override hjson services not accepted
Browse files Browse the repository at this point in the history
  • Loading branch information
cryi committed Oct 9, 2024
1 parent 38eaf02 commit 5f332b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/box/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ local function inject_ascend_services(protocol, bakers, options)

for _, serviceFileName in ipairs(serviceFiles) do
local servicePath = path.combine(serviceDirectory, serviceFileName)
if not servicePath:match("%.json$") then
if not servicePath:match("%.json$") and not servicePath:match("%.hjson$") then
goto continue
end

Expand Down
2 changes: 1 addition & 1 deletion src/version-info.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local TEZBOX_VERSIOn = "0.3.1"
local TEZBOX_VERSIOn = "0.3.2"

return {
VERSION = TEZBOX_VERSIOn,
Expand Down

0 comments on commit 5f332b6

Please sign in to comment.