Skip to content

Commit 18b56a2

Browse files
committed
revert to bin/<platform>
1 parent 96c4242 commit 18b56a2

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
with:
1919
name: lua-language-server
2020
path: |
21-
bin-Windows
22-
bin-Linux
23-
bin-macOS
21+
bin/Windows
22+
bin/Linux
23+
bin/macOS
2424
resource:
2525
runs-on: ubuntu-latest
2626
steps:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
/bin-Windows
88
/bin-Linux
99
/bin-macOS
10+
/bin

make.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ local lm = require 'luamake'
22
local platform = require 'bee.platform'
33
local exe = platform.OS == 'Windows' and ".exe" or ""
44

5-
lm.bindir = 'bin-' .. platform.OS
5+
lm.bindir = 'bin/' .. platform.OS
66

77
lm.EXE_DIR = ""
88
lm:import "3rd/bee.lua/make.lua"

make/bootstrap.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.."$")
52+
root = package.cpath:match("([^;]+)"..pattern..pattern..pattern.."$")
5353
arg[0] = root .. package.config:sub(1,1) .. 'main.lua'
5454
end
5555
root = root:gsub('[/\\]', package.config:sub(1,1))

0 commit comments

Comments
 (0)