diff options
author | Maarten Bezemer <maarten.bezemer@gmail.com> | 2014-10-01 23:17:14 +0200 |
---|---|---|
committer | Maarten Bezemer <maarten.bezemer@gmail.com> | 2014-10-01 23:17:14 +0200 |
commit | 4e8d19d1e06c367b1978f05f3be4a8f15f8cb1e8 (patch) | |
tree | 022236dabc917492f6f7fd0e0d9dc34922bd4821 | |
parent | 28d47e3f113063d56e3cc2455429d4f2099314c3 (diff) |
Improve portability
-rw-r--r-- | tools/Linux/xbmc.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Linux/xbmc.sh.in b/tools/Linux/xbmc.sh.in index 14a082b253..ce850fda82 100644 --- a/tools/Linux/xbmc.sh.in +++ b/tools/Linux/xbmc.sh.in @@ -84,7 +84,7 @@ print_crash_report() echo "############### STACK TRACE #################" >> $FILE if command_exists gdb; then if command_exists systemd-coredumpctl; then - systemd-coredumpctl dump -o core xbmc.bin &> /dev/null + systemd-coredumpctl dump -o core xbmc.bin > /dev/null 2>&1 fi single_stacktrace "$PWD" 1 # Find in plugins directories |