From: Ian Jackson Date: Sat, 26 Sep 2020 18:40:16 +0000 (+0100) Subject: Add a missing space to usvgs X-Git-Tag: otter-0.2.0~889 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fa7d15a6994b4b89da2ef96eb3c73b6ea58f132a;p=otter.git Add a missing space to usvgs Signed-off-by: Ian Jackson --- diff --git a/usvg-processor b/usvg-processor index 51e82849..4e7b1af2 100755 --- a/usvg-processor +++ b/usvg-processor @@ -12,7 +12,7 @@ open STDIN, "<", $in or die $!; sub add_lic () { while () { next unless m{^\s*SPDX-License-Identifier:\s+(\S.*?)\s*$}; - print "\n" or die $!; + print "\n" or die $!; return; } die "no spdx in $lic ?";