File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ local lm = require 'luamake'
22local platform = require ' bee.platform'
33local exe = platform .OS == ' Windows' and " .exe" or " "
44
5- lm .bindir = ' bin/ ' .. platform . OS
5+ lm .bindir = " bin"
66
77lm .EXE_DIR = " "
88lm :import " 3rd/bee.lua/make.lua"
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ local root; do
4949 sep = ' /\\ '
5050 end
5151 local pattern = " [" .. sep .. " ][^" .. sep .. " ]+"
52- root = package.cpath :match (" ([^;]+)" .. pattern .. pattern .. pattern .. " $" )
52+ root = package.cpath :match (" ([^;]+)" .. pattern .. pattern .. " $" )
5353 arg [0 ] = root .. package.config :sub (1 ,1 ) .. ' main.lua'
5454 end
5555 root = root :gsub (' [/\\ ]' , package.config :sub (1 ,1 ))
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package.path = package.path
22 .. ' ;./test/?.lua'
33 .. ' ;./test/?/init.lua'
44local fs = require ' bee.filesystem'
5- local rootPath = fs .exe_path ():parent_path ():parent_path ():parent_path (): string ()
5+ local rootPath = fs .exe_path ():parent_path ():parent_path ():string ()
66ROOT = fs .path (rootPath )
77TEST = true
88DEVELOP = true
You can’t perform that action at this time.
0 commit comments