From 4de8698f550a85e6a56b034661c66704113cb5b7 Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Sun, 30 Sep 2018 12:09:14 +0000 Subject: [PATCH] run syncfs with -v if install is verbose --- zpm-install | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zpm-install b/zpm-install index 76a9654..9ab9fcd 100755 --- a/zpm-install +++ b/zpm-install @@ -160,7 +160,11 @@ for pkgstr in "$@"; do continue fi - zpm syncfs -f $pkgfile + if [ $verbose -gt 0 ]; then + zpm syncfs -v -f $pkgfile + else + zpm syncfs -f $pkgfile + fi if [ $? -ne 0 ]; then die 'zpm-syncfs failed'; -- 2.40.0