chdman/3rdparty/expat/run.sh.in
2022-01-05 08:45:19 +02:00

13 lines
181 B
Bash

#! /usr/bin/env bash
# Copyright (C) 2017 Expat development team
# Licensed under the MIT license
case "@host@" in
*-mingw*)
exec wine "$@"
;;
*)
exec "$@"
;;
esac