From 6092eff4412b63b5e77761325683500ee8b718f6 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sat, 22 Jun 2024 19:40:13 -0300 Subject: [PATCH] set +x before we call perform_(update|install) --- libexec/sourcezap/commands/sourcezap-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/sourcezap/commands/sourcezap-install b/libexec/sourcezap/commands/sourcezap-install index e03e50f..a82006d 100755 --- a/libexec/sourcezap/commands/sourcezap-install +++ b/libexec/sourcezap/commands/sourcezap-install @@ -86,11 +86,11 @@ umask ${mode} cd "${gitdir}" run_install "-d" "${installdir}" chmod ${mode} "${installdir}" +set +x if [ -e "${revfile}" ]; then perform_update else perform_install fi "${libexec}"/utils/git-rev "${gitdir}" > "${revfile}" -set +x printok "install complete"