Handle std(err|out)_file both being the same file.
This commit is contained in:
parent
c9d4d151ac
commit
2b718dab24
1 changed files with 1 additions and 1 deletions
|
@ -37,6 +37,6 @@ stdout_file="${STDOUT_FILE}"
|
||||||
${COMMAND} 1>"$stdout_file"
|
${COMMAND} 1>"$stdout_file"
|
||||||
else
|
else
|
||||||
# both files specified
|
# both files specified
|
||||||
${COMMAND} 1>"$stdout_file" 2>"$stderr_file"
|
${COMMAND} 1>>"$stdout_file" 2>>"$stderr_file"
|
||||||
fi
|
fi
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue