mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
completions: remove deprecated shell syntax.
https://bugzilla.gnome.org/show_bug.cgi?id=744877#c21
This commit is contained in:
parent
c72abb2737
commit
92d204be44
2 changed files with 4 additions and 4 deletions
|
@ -60,7 +60,7 @@ __inspect_main ()
|
|||
then
|
||||
command="$var"
|
||||
fi
|
||||
i=$[$i+1]
|
||||
i=$(($i+1))
|
||||
done
|
||||
|
||||
if [[ "$command" == "--gst"* ]]; then
|
||||
|
|
|
@ -65,7 +65,7 @@ _gst_launch_main ()
|
|||
then
|
||||
command="$var"
|
||||
fi
|
||||
i=$[$i+1]
|
||||
i=$(($i+1))
|
||||
done
|
||||
|
||||
i=1
|
||||
|
@ -76,7 +76,7 @@ _gst_launch_main ()
|
|||
|
||||
if [[ "$var" == "--"* ]]
|
||||
then
|
||||
i=$[$i+1]
|
||||
i=$(($i+1))
|
||||
continue
|
||||
fi
|
||||
|
||||
|
@ -86,7 +86,7 @@ _gst_launch_main ()
|
|||
previous_element="$var"
|
||||
have_previous_element=1
|
||||
fi
|
||||
i=$[$i+1]
|
||||
i=$(($i+1))
|
||||
done
|
||||
|
||||
if [[ "$command" == "--gst"* ]]; then
|
||||
|
|
Loading…
Reference in a new issue