[provisioning] Fix command output redirection

This commit is contained in:
Correl Roush 2018-05-02 17:22:50 -04:00
parent 04bdf563a1
commit baf7391dae

View file

@ -65,7 +65,7 @@ function _run {
shift
if [ -z "$DEBUG" ]; then
echo -n "$msg..."
$@ 2>&1 >/dev/null
$@ >/dev/null 2>&1
else
echo "$msg..."
$@