From 0006974952b37763506ac032f7914673a0a431e5 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 15 Oct 2018 12:06:03 -0400 Subject: [PATCH] release.sh: Fix extracting the section for xorg modules Previously for an xserver release this would try to upload to /srv/xorg.freedesktop.org/archive/individual/xorg, which is not a real path. Signed-off-by: Adam Jackson --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index 57893fd..aa38d29 100755 --- a/release.sh +++ b/release.sh @@ -272,7 +272,7 @@ get_section() { fi fi - if [ x"$section" = xwayland ]; then + if [ x"$section" = xwayland -o x"$section" = xxorg ]; then section=`echo $module_url | cut -d'/' -f2` if [ $? -ne 0 ]; then echo "Error: unable to extract section from $module_url second field." -- 2.11.4.GIT