summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-06-15 14:12:55 -0700
committerEmil Velikov <emil.l.velikov@gmail.com>2018-06-20 13:01:43 +0100
commit340cb7b046e2b43aeb62d9a278bc6acb657cbf7e (patch)
tree96f6c19c4e86391374809376a9ef1da04827e693
parentf9c53a4545f6f84642ed04123459b223090b8f77 (diff)
release: fix mesa url detection after migration to gitlab
Mesa's migration to gitlab has changed the URL and made things not work. Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
-rwxr-xr-xrelease.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.sh b/release.sh
index b2071b6..6b8e441 100755
--- a/release.sh
+++ b/release.sh
@@ -240,7 +240,7 @@ get_section() {
module_url=`echo $module_url | cut -d'/' -f3,4`
else
# The look for mesa, xcb, etc...
- module_url=`echo "$full_module_url" | $GREP -o -e "/mesa/.*" -e "/xcb/.*" -e "/xkeyboard-config" -e "/nouveau/xf86-video-nouveau" -e "/libevdev" -e "/wayland/.*" -e "/evemu"`
+ module_url=`echo "$full_module_url" | $GREP -o -e "mesa/.*" -e "/xcb/.*" -e "/xkeyboard-config" -e "/nouveau/xf86-video-nouveau" -e "/libevdev" -e "/wayland/.*" -e "/evemu"`
if [ $? -eq 0 ]; then
module_url=`echo $module_url | cut -d'/' -f2,3`
else