From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1451848-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E3F10158021 for <garchives@archives.gentoo.org>; Mon, 31 Oct 2022 13:41:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 290C52BC145; Mon, 31 Oct 2022 13:41:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F6382BC145 for <gentoo-commits@lists.gentoo.org>; Mon, 31 Oct 2022 13:41:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 98217340E9E for <gentoo-commits@lists.gentoo.org>; Mon, 31 Oct 2022 13:41:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9FD8644 for <gentoo-commits@lists.gentoo.org>; Mon, 31 Oct 2022 13:41:32 +0000 (UTC) From: "Kenton Groombridge" <concord@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kenton Groombridge" <concord@gentoo.org> Message-ID: <1667223670.0d2de82efb7e1a2de3df481f889102f82fa728b4.concord@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/miniflux/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/miniflux/miniflux-2.0.38.ebuild www-apps/miniflux/miniflux-2.0.39.ebuild X-VCS-Directories: www-apps/miniflux/ X-VCS-Committer: concord X-VCS-Committer-Name: Kenton Groombridge X-VCS-Revision: 0d2de82efb7e1a2de3df481f889102f82fa728b4 X-VCS-Branch: master Date: Mon, 31 Oct 2022 13:41:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a04b1ec0-cfc6-43c5-8892-55007b0769a0 X-Archives-Hash: 4340a1a7e97a014512be28a6bde5cef6 commit: 0d2de82efb7e1a2de3df481f889102f82fa728b4 Author: Kenton Groombridge <concord <AT> gentoo <DOT> org> AuthorDate: Mon Oct 31 13:40:19 2022 +0000 Commit: Kenton Groombridge <concord <AT> gentoo <DOT> org> CommitDate: Mon Oct 31 13:41:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d2de82e www-apps/miniflux: fix variable quoting Signed-off-by: Kenton Groombridge <concord <AT> gentoo.org> www-apps/miniflux/miniflux-2.0.38.ebuild | 2 +- www-apps/miniflux/miniflux-2.0.39.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www-apps/miniflux/miniflux-2.0.38.ebuild b/www-apps/miniflux/miniflux-2.0.38.ebuild index 4ef790cbc12c..e13b13d7f56d 100644 --- a/www-apps/miniflux/miniflux-2.0.38.ebuild +++ b/www-apps/miniflux/miniflux-2.0.38.ebuild @@ -88,7 +88,7 @@ pkg_config() { # Extract the database URL variable instead of just sourcing the config file # because miniflux itself may interpret quotes as part of the URL - local DATABASE_URL="$(sed -n 's/^DATABASE_URL=\(.*\)/\1/p' ${EROOT}/etc/${PN}.conf)" + local DATABASE_URL="$(sed -n 's/^DATABASE_URL=\(.*\)/\1/p' "${EROOT}/etc/${PN}.conf")" [[ -n "${DATABASE_URL}" ]] || die "Failed getting DATABASE_URL from config file" DATABASE_URL="${DATABASE_URL}" "${EROOT}"/usr/bin/miniflux -migrate || die "miniflux -migrate failed. Please check the above output for errors." diff --git a/www-apps/miniflux/miniflux-2.0.39.ebuild b/www-apps/miniflux/miniflux-2.0.39.ebuild index 4ef790cbc12c..e13b13d7f56d 100644 --- a/www-apps/miniflux/miniflux-2.0.39.ebuild +++ b/www-apps/miniflux/miniflux-2.0.39.ebuild @@ -88,7 +88,7 @@ pkg_config() { # Extract the database URL variable instead of just sourcing the config file # because miniflux itself may interpret quotes as part of the URL - local DATABASE_URL="$(sed -n 's/^DATABASE_URL=\(.*\)/\1/p' ${EROOT}/etc/${PN}.conf)" + local DATABASE_URL="$(sed -n 's/^DATABASE_URL=\(.*\)/\1/p' "${EROOT}/etc/${PN}.conf")" [[ -n "${DATABASE_URL}" ]] || die "Failed getting DATABASE_URL from config file" DATABASE_URL="${DATABASE_URL}" "${EROOT}"/usr/bin/miniflux -migrate || die "miniflux -migrate failed. Please check the above output for errors."