We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e735620 commit d2114fcCopy full SHA for d2114fc
update-gst.sh
@@ -0,0 +1,9 @@
1
+#! /bin/bash
2
+for i in gstreamer gst-plugins-{base,good,bad,ugly}; do
3
+ echo $i;
4
+ master_commit=`git ls-remote git://anongit.freedesktop.org/git/gstreamer/$i | grep "master$" | awk '{print $1}'`
5
+ echo $master_commit
6
+ for j in -1.0{,-static}; do
7
+ sed -E -i .bak "s/([ ]+commit = )'[0-9a-z]+'/\1'$master_commit'/" recipes/$i$j.recipe;
8
+ done
9
+done
0 commit comments