summarylogtreecommitdiffstats
path: root/start-eac3to.sh
blob: 212d50f702ff2f9a4f0c145b59cdb793b3edbc4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Wrapper script to run eac3to through Wine

# Run eac3to with Wine, suppressing debug output
WINEDEBUG=-all wine /usr/share/eac3to/eac3to.exe "$@"
exit_code=$?

# Reset terminal colors
tput init

# Preserve eac3to's exit code
exit $exit_code