blob: ff3fb36447ca1f1ad305dbf61b011e6a9baf4b0e [file] [log] [blame]
Elliott Hughes72472942018-01-10 08:36:10 -08001#! /usr/bin/env bash
2# Copyright (C) 2017 Expat development team
3# Licensed under the MIT license
4
5case "@host@" in
6*-mingw*)
7 exec wine "$@"
8 ;;
9*)
10 exec "$@"
11 ;;
12esac