summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2023-03-23 17:39:49 +0100
committerUlrich Müller <ulm@gentoo.org>2023-03-26 13:33:45 +0200
commit40c7f83b338999ffcf0974b287863c04263016f3 (patch)
tree18cc7f0a8e7d961b9145392606cfd947143699d6 /eclass
parentmeson.eclass: Quote argument of ":" command (diff)
downloadgentoo-40c7f83b338999ffcf0974b287863c04263016f3.tar.gz
gentoo-40c7f83b338999ffcf0974b287863c04263016f3.tar.bz2
gentoo-40c7f83b338999ffcf0974b287863c04263016f3.zip
mozextension.eclass: Quote argument of ":" command
This avoids globbing, see: https://www.shellcheck.net/wiki/SC2223 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/mozextension.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mozextension.eclass b/eclass/mozextension.eclass
index 692aa816d8ed..52fe26280e6e 100644
--- a/eclass/mozextension.eclass
+++ b/eclass/mozextension.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: mozextension.eclass
@@ -21,7 +21,7 @@ _MOZEXTENSION_ECLASS=1
# to be overridden from the default app-global extensions path.
# Default is empty, which installs to predetermined hard-coded
# paths specified in the eclass.
-: ${MOZEXTENSION_TARGET:=""}
+: "${MOZEXTENSION_TARGET:=""}"
BDEPEND="app-arch/unzip"