We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff832f1 commit 01e2fcfCopy full SHA for 01e2fcf
script/filewatch.lua
@@ -1,5 +1,6 @@
1
local fw = require 'bee.filewatch'
2
local fs = require 'bee.filesystem'
3
+local sys = require 'bee.sys'
4
local plat = require 'bee.platform'
5
local await = require 'await'
6
local files = require 'files'
@@ -16,7 +17,7 @@ local function isExists(filename)
16
17
if plat.os ~= 'windows' then
18
return true
19
end
- local res = fs.fullpath(path)
20
+ local res = sys.fullpath(path)
21
if not res then
22
return false
23
script/meta/bee/sys.lua
@@ -11,4 +11,9 @@ end
11
function sys.dll_path()
12
13
14
+---@param path fs.path
15
+---@return fs.path?
+function sys.fullpath(path)
+end
+
return sys
0 commit comments