Browse Source

fix: Bing dir create failed

master
Ein Verne 2 years ago
parent
commit
65a19a545a
  1. 8
      hammerspoon/Spoons/BingDaily.spoon/init.lua

8
hammerspoon/Spoons/BingDaily.spoon/init.lua

@ -71,9 +71,13 @@ local function bingRequest()
end end
function create_dir(path) function create_dir(path)
if hs.fs.dir(path) == nil then if hs.fs.displayName(path) == nil then
hs.fs.mkdir(path) local result = hs.fs.mkdir(path)
if result == true then
log.i("path: " .. path .. " create successfully!") log.i("path: " .. path .. " create successfully!")
else
log.i("path: " .. path .. " create failed!")
end
end end
end end

Loading…
Cancel
Save