summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-09-06 13:15:34 +0100
committerSam James <sam@gentoo.org>2024-09-06 13:15:34 +0100
commit80dd3758530e67117c8eb5828169fde2445c4333 (patch)
tree5194c3a1c38d53ccf42cdad6a8a30a0bd5ce4cfd /dev-scheme
parentapp-text/ansifilter: Bump to 2.21 (diff)
downloadgentoo-80dd3758530e67117c8eb5828169fde2445c4333.tar.gz
gentoo-80dd3758530e67117c8eb5828169fde2445c4333.tar.bz2
gentoo-80dd3758530e67117c8eb5828169fde2445c4333.zip
dev-scheme/slib: fix syntax issue
For some reason, bash-5.3_alpha_p20240904 doesn't complain with `bash -n` for me but this showed up in the pkgcore CI when running pmaint regen, as pointed out by arthurzam. Thanks to ulm for noticing the syntax error. Fixes: be9c7e95d5255d8e8b0dfc2350a5666ddd3d67d9 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-scheme')
-rw-r--r--dev-scheme/slib/slib-3.3.1-r100.ebuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-scheme/slib/slib-3.3.1-r100.ebuild b/dev-scheme/slib/slib-3.3.1-r100.ebuild
index b1b5e37bde1a..bb816cbbac26 100644
--- a/dev-scheme/slib/slib-3.3.1-r100.ebuild
+++ b/dev-scheme/slib/slib-3.3.1-r100.ebuild
@@ -54,7 +54,7 @@ src_compile() {
}
_new_catalog() {
- if [[ ${1} != @(guile|scm) ]] then
+ if [[ ${1} != @(guile|scm) ]] ; then
echo -n "(load \"${ROOT}/usr/share/slib/${1}.init\")" || die
fi
echo " (require 'new-catalog) (slib:report-version)" || die