lua-language-server: remove install_path.patch

This commit is contained in:
Aditya Alok 2021-10-22 13:14:57 +05:30
parent dbca306198
commit 0101394d1c
No known key found for this signature in database
GPG Key ID: 5A52117417798AC7

View File

@ -1,13 +0,0 @@
'pf.OS' returns 'linux' but output is expected in 'android' dir
--- lua-language-server/make/install.lua 2021-10-15 19:14:29.794791240 +0530
+++ lua-language-server-patch/make/install.lua 2021-10-15 19:16:39.334791191 +0530
@@ -1,7 +1,7 @@
local fs = require 'bee.filesystem'
local pf = require 'bee.platform'
local CWD = fs.current_path()
-local output = CWD / 'bin' / pf.OS
+local output = CWD / 'bin' / 'Android'
if pf.OS == 'Windows' then
require 'msvc'.copy_vcrt('x64', output)