summaryrefslogtreecommitdiff
path: root/run.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh.in')
-rw-r--r--run.sh.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/run.sh.in b/run.sh.in
new file mode 100644
index 0000000..ff3fb36
--- /dev/null
+++ b/run.sh.in
@@ -0,0 +1,12 @@
+#! /usr/bin/env bash
+# Copyright (C) 2017 Expat development team
+# Licensed under the MIT license
+
+case "@host@" in
+*-mingw*)
+ exec wine "$@"
+ ;;
+*)
+ exec "$@"
+ ;;
+esac