Skip to content

Commit

Permalink
Add Linux start script
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbrechtL committed Feb 14, 2021
1 parent e113fd1 commit 248f52d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Linux/TeddyBench
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/sh

# check for mono
if ! type "mono" > /dev/null
then
echo "mono could not be found. Please read the README.md for installation instructions."
exit
fi

# check for ffmpeg
if ! type "ffmpeg" > /dev/null
then
echo "ffmpeg could not be found. Please read the README.md for installation instructions."
exit
fi

# Some exports to avoid crashes
export MONO_MANAGED_WATCHER=disabled
export MONO_WINFORMS_XIM_STYLE=disabled

# Start TeddyBench
mono TeddyBench.exe

0 comments on commit 248f52d

Please sign in to comment.