mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[provisioning] Fix command output redirection
This commit is contained in:
parent
04bdf563a1
commit
baf7391dae
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ function _run {
|
||||||
shift
|
shift
|
||||||
if [ -z "$DEBUG" ]; then
|
if [ -z "$DEBUG" ]; then
|
||||||
echo -n "$msg..."
|
echo -n "$msg..."
|
||||||
$@ 2>&1 >/dev/null
|
$@ >/dev/null 2>&1
|
||||||
else
|
else
|
||||||
echo "$msg..."
|
echo "$msg..."
|
||||||
$@
|
$@
|
||||||
|
|
Loading…
Reference in a new issue