Skip to content

Commit

Permalink
kpkg: we need to add verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
kreatoo committed Sep 12, 2023
1 parent 1ca4291 commit 1f1fc99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kpkg/commands/installcmd.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1f1fc99

Please sign in to comment.