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}" cd "${gitdir}"
run_install "-d" "${installdir}" run_install "-d" "${installdir}"
chmod ${mode} "${installdir}" chmod ${mode} "${installdir}"
set +x
if [ -e "${revfile}" ]; then if [ -e "${revfile}" ]; then
perform_update perform_update
else else
perform_install perform_install
fi fi
"${libexec}"/utils/git-rev "${gitdir}" > "${revfile}" "${libexec}"/utils/git-rev "${gitdir}" > "${revfile}"
set +x
printok "install complete" printok "install complete"