gstreamer/checkout-branch-worktree
Nirbheek Chauhan 5b77e65d06 Move checkout-branch-worktree to gst-worktree.py
We will add more actions to it than just 'checkout'. Also add
a wrapper shell script that calls gst-worktree.py with the correct
arguments.
2019-11-24 01:25:38 +05:30

10 lines
138 B
Bash
Executable file

#!/bin/sh
cd `dirname $0`
case "$MSYSTEM" in
*MINGW*) PYTHON="py -3";;
*) PYTHON="python3";;
esac
$PYTHON gst-worktree.py "$@"