summaryrefslogtreecommitdiffstats
path: root/tools/scons/files/pywrap.sh
blob: 53910e947209dd8cd19fdf5bf8ee857ad71d5823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

case "${0##*/}" in
	pywrap.sh) arg1="";;
	*) arg1="$0.py" ;;
esac

for bin in python python3; do
    case "$($bin -V 2>&1)" in
        "Python 3"*) exec $bin $arg1 "$@" ;;
    esac
done

echo "Unable to find a Python 3.x interpreter for executing ${arg1:+$arg1 }$@ !" >&2
exit 1