feat: use powershell to unzip on windows

This commit is contained in:
Moeta Yuko 2024-02-13 14:47:36 +08:00
parent 863213bbc8
commit a13c09e95f

View File

@ -22,12 +22,11 @@ return function()
local continue = fn.filereadable(zip) == 1 local continue = fn.filereadable(zip) == 1
local handle = function(output) local handle = function(output)
if output.exit == 0 and fn.filereadable(zip) then if output.exit == 0 and fn.filereadable(zip) then
if fn.executable 'unzip' == 0 then local cmd =
vim.notify('unzip not found, Please unzip ' .. zip .. 'manually', vim.log.ERROR) Trans.system == 'win' and
return string.format('powershell.exe -Command "Expand-Archive -Force %s %s"', zip, dir) or
end fn.executable('unzip') == 1 and string.format('unzip %s -d %s', zip, dir) or
error('unzip not found, Please unzip ' .. zip .. ' manually')
local cmd = string.format('unzip %s -d %s', zip, dir)
local status = os.execute(cmd) local status = os.execute(cmd)
os.remove(zip) os.remove(zip)
if status == 0 then if status == 0 then