run.sh.in 181 B

12345678910111213
  1. #! /usr/bin/env bash
  2. # Copyright (C) 2017 Expat development team
  3. # Licensed under the MIT license
  4. case "@host@" in
  5. *-mingw*)
  6. exec wine "$@"
  7. ;;
  8. *)
  9. exec "$@"
  10. ;;
  11. esac