Update file run_onchange_after_12-install-packages.tmpl

This commit is contained in:
Brian Zalewski 2023-01-10 08:05:54 +00:00
parent 5730aaa713
commit 09f6954405

View file

@ -29,7 +29,11 @@ if command -v install-program > /dev/null; then
. "$HOME/.bashrc"
fi
export LC_ALL="en_US.UTF-8"
install-program {{ $softwareList }}
if command -v unbuffer > /dev/null; then
unbuffer install-program {{ $softwareList }}
else
install-program {{ $softwareList }}
fi
else
logg error '`zx` is not available'
fi