From 1f1fc990b4b686941bb126418aedc61f24fd5dfa Mon Sep 17 00:00:00 2001 From: Kreato Date: Tue, 12 Sep 2023 06:43:25 +0300 Subject: [PATCH] kpkg: we need to add verbose --- kpkg/commands/installcmd.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kpkg/commands/installcmd.nim b/kpkg/commands/installcmd.nim index 8a721102..62d354bb 100644 --- a/kpkg/commands/installcmd.nim +++ b/kpkg/commands/installcmd.nim @@ -85,8 +85,8 @@ proc install_pkg*(repo: string, package: string, root: string) = createSymlink(package, root&"/var/cache/kpkg/installed/"&i) - debug "Executing 'tar -hxf "&tarball&" -C "&root&"'" - let cmd = execCmdEx("tar -hxf "&tarball&" -C "&root) + debug "Executing 'tar -hxvf "&tarball&" -C "&root&"'" + let cmd = execCmdEx("tar -hxvf "&tarball&" -C "&root) if cmd.exitCode != 0: debug cmd.output removeDir(root&"/var/cache/kpkg/installed/"&package)