set +x before we call perform_(update|install)

This commit is contained in:
0x1eef 2024-06-22 19:40:13 -03:00
parent a9f8daac78
commit 6092eff441

View file

@ -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"