Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: correct tar command argument order
  • Loading branch information
s1n7ax committed Dec 3, 2025
commit 493d2b6f35789150da9d00e6cbd4cfc066ead865
2 changes: 1 addition & 1 deletion lua/pkgm/extractors/tar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ function Tar:extract()
local dest = self.dest:gsub('\\', '/')
cmd = string.format(
'%s --no-same-owner %s -xf "%s" -C "%s"',
self:tar_supports_force_local(tar_cmd) and '--force-local' or '',
tar_cmd,
self:tar_supports_force_local(tar_cmd) and '--force-local' or '',
source,
dest
)
Expand Down