commit:     dbceb10a20c60ebea3dfce9062932cbc22526741
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  5 19:10:16 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Oct 12 15:52:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbceb10a

eclass/dotnet-pkg-base.eclass: clarify test, quotes in dolauncher

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 eclass/dotnet-pkg-base.eclass | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/eclass/dotnet-pkg-base.eclass b/eclass/dotnet-pkg-base.eclass
index e2659a829e19..5b2d6e2dd2c1 100644
--- a/eclass/dotnet-pkg-base.eclass
+++ b/eclass/dotnet-pkg-base.eclass
@@ -371,7 +371,7 @@ dotnet-pkg-base_restore_tools() {
                --add-source "${NUGET_PACKAGES}"
        )
 
-       if [[ "${1}" ]] ; then
+       if [[ -n "${1}" ]] ; then
                tool_restore_args+=( --configfile "${1}" )
                shift
        fi
@@ -434,7 +434,7 @@ dotnet-pkg-base_test() {
        debug-print-function "${FUNCNAME[0]}" "${@}"
 
        local directory
-       if [[ "${1}" ]] ; then
+       if [[ -n "${1}" ]] ; then
                directory="${1}"
                shift
        else
@@ -529,7 +529,7 @@ dotnet-pkg-base_dolauncher() {
 
        local executable_path executable_name
 
-       if [[ "${1}" ]] ; then
+       if [[ -n "${1}" ]] ; then
                local executable_path="${1}"
                shift
        else
@@ -553,9 +553,9 @@ dotnet-pkg-base_dolauncher() {
        # compatible with dotnet version ${DOTNET_PKG_COMPAT}.
 
        for __dotnet_root in \\
-               ${EPREFIX}/usr/$(get_libdir)/dotnet-sdk-${DOTNET_PKG_COMPAT} \\
-               ${EPREFIX}/opt/dotnet-sdk-bin-${DOTNET_PKG_COMPAT} ; do
-               [ -d \${__dotnet_root} ] && break
+               "${EPREFIX}/usr/$(get_libdir)/dotnet-sdk-${DOTNET_PKG_COMPAT}" 
\\
+               "${EPREFIX}/opt/dotnet-sdk-bin-${DOTNET_PKG_COMPAT}" ; do
+               [ -d "\${__dotnet_root}" ] && break
        done
 
        DOTNET_ROOT="\${__dotnet_root}"

Reply via email to