mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
5b77e65d06
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.
10 lines
138 B
Bash
Executable file
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 "$@"
|