Skip to content

Commit

Permalink
chore: fix nodejs output
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Jan 2, 2025
1 parent 57883da commit 32d467a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ target("legacy-script-engine")
set_basename("legacy-script-engine-nodejs")
after_build(function(target)
local langPath = path.join(os.projectdir(), "src/lang")
local outputPath = path.join(os.projectdir(), "bin/" .. target:name())
local outputPath = path.join(os.projectdir(), "bin/" .. target:name() .. "/lang")
os.cp(langPath, outputPath)
end)
end
Expand Down

0 comments on commit 32d467a

Please sign in to comment.