diff options
author | Mattia Rizzolo <mattia@debian.org> | 2016-10-18 16:55:47 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-10-18 19:02:34 +0200 |
commit | 0ec20c9e4006d55c2fbffbe16f240b8a1f496946 (patch) | |
tree | 829d786bd0954d37f939ecdf779d1a5f01d5ebdb /bin | |
parent | 36ee0d430e4e112242bb2acac6f4728b59cff910 (diff) | |
download | jenkins.debian.net-0ec20c9e4006d55c2fbffbe16f240b8a1f496946.tar.xz |
reproducible: common.sh: properly escape the double quote signs in the footer description
those strings will end up in a JSON-like string, which need the " signs to be escaped
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 1aeb3644..43b830f7 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -336,13 +336,13 @@ write_page_intro() { write_page_footer() { if [ "$1" = "coreboot" ] ; then - other_distro_details="The <a href=\"http://www.coreboot.org\">Coreboot</a> logo is Copyright © 2008 by Konsult Stuge and coresystems GmbH and can freely be used to refer to the Coreboot project." + other_distro_details='The <a href=\"http://www.coreboot.org\">Coreboot</a> logo is Copyright © 2008 by Konsult Stuge and coresystems GmbH and can freely be used to refer to the Coreboot project.' elif [ "$1" = "NetBSD" ] ; then other_distro_details="NetBSD® is a registered trademark of The NetBSD Foundation, Inc." elif [ "$1" = "FreeBSD" ] ; then other_distro_details="FreeBSD is a registered trademark of The FreeBSD Foundation. The FreeBSD logo and The Power to Serve are trademarks of The FreeBSD Foundation." elif [ "$1" = "Arch Linux" ] ; then - other_distro_details="The <a href=\"https://www.archlinux.org\">Arch Linux</a> name and logo are recognized trademarks. Some rights reserved. The registered trademark Linux® is used pursuant to a sublicense from LMI, the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis." + other_distro_details='The <a href=\"https://www.archlinux.org\">Arch Linux</a> name and logo are recognized trademarks. Some rights reserved. The registered trademark Linux® is used pursuant to a sublicense from LMI, the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis.' elif [ "$1" = "fedora-23" ] ; then other_distro_details="FIXME: add fedora copyright+trademark disclaimers here." else |