From: Nathan Wagner Date: Sun, 15 Apr 2018 00:35:26 +0000 (-0500) Subject: remove some debugging verbosity X-Git-Tag: v0.1.6~104 X-Git-Url: https://pd.if.org/git/?p=zpackage;a=commitdiff_plain;h=8f419bd28b19006d1432923a2539d15af4c00686 remove some debugging verbosity --- 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