From 8f419bd28b19006d1432923a2539d15af4c00686 Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Sat, 14 Apr 2018 19:35:26 -0500 Subject: [PATCH] remove some debugging verbosity --- zpm-ipkgfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/zpm-ipkgfile b/zpm-ipkgfile index a7be95a..60df289 100755 --- a/zpm-ipkgfile +++ b/zpm-ipkgfile @@ -47,8 +47,7 @@ export ZPMPKGFILE set -e for path in $*; do - echo installing $path from $pkg - set -x + printf '%s installing %s\n' $pkg $path fhash=$(zpm pkgfileinfo hash $path) mode=$(zpm pkgfileinfo mode $path) ftype=$(zpm pkgfileinfo filetype $path) @@ -73,7 +72,6 @@ for path in $*; do # to do the extract to temp and such, then # you can just add the -S option (secure) #cat <<-EOC - set -x mkdir -p $dir zpm extract $pkgfile $fhash $tmppath 0 chown $owner:$group $tmppath @@ -81,6 +79,5 @@ for path in $*; do # TODO mv -n non-posix, going to need to have extract do all # of this mv -n $tmppath $dir/$name - set +x #EOC done -- 2.40.0