lua-language-server: remove unittest.patch

This commit is contained in:
Aditya Alok 2021-10-03 01:53:49 +05:30
parent 645648fe3f
commit 6e96ee4017
No known key found for this signature in database
GPG Key ID: 5A52117417798AC7

View File

@ -1,20 +0,0 @@
--- lua-language-server/make.lua 2021-08-10 10:19:09.365907411 +0530
+++ lua-language-server-patch/make.lua 2021-08-10 19:21:14.691999783 +0530
@@ -22,17 +22,3 @@
'bootstrap',
}
}
-
-local fs = require 'bee.filesystem'
-local pf = require 'bee.platform'
-local exe = pf.OS == 'Windows' and ".exe" or ""
-lm:build 'unittest' {
- fs.path 'bin' / pf.OS / ('lua-language-server' .. exe), 'test.lua', '-E',
- pool = "console",
- deps = {
- 'install',
- 'test',
- }
-}
-
-lm:default 'unittest'