diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2016-12-06 16:27:23 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2016-12-06 18:25:23 +0000 |
commit | 0728b9b59b1e18b174e210590e3b120f2bf8cf9f (patch) | |
tree | 8e3aef856409d3871ddfe48d2c564f958cbbbbf3 | |
parent | efc6264c374049abba741dcbb98f5294538b68fe (diff) |
helpers/gst: Get bash completion options from gst-launch
It is more likely that gst-launch is installed than ges-launch
Reported-by: Marianna Smidth Buschle <msb@qtec.com>
https://bugzilla.gnome.org/show_bug.cgi?id=775714
-rw-r--r-- | libs/gst/helpers/gst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gst/helpers/gst b/libs/gst/helpers/gst index c8bcee874..bd34abfce 100644 --- a/libs/gst/helpers/gst +++ b/libs/gst/helpers/gst @@ -28,7 +28,7 @@ _gst_mandatory_argument () { if [[ "$prev" != "$command" ]] then - COMPREPLY=( $(compgen -W "$(ges-launch-1.0 --help-all | grep -oh '[[:graph:]]*--[[:graph:]]*' | cut -d'=' -f1)" -- $cur) ) + COMPREPLY=( $(compgen -W "$(gst-launch-1.0 --help-all | grep -oh '[[:graph:]]*--[[:graph:]]*' | cut -d'=' -f1)" -- $cur) ) else COMPREPLY=("$cur") fi |