From 8fbec958ed604bd13391d900a71878dc74048487 Mon Sep 17 00:00:00 2001 From: "Arnaud G. GIBERT" Date: Mon, 21 Apr 2025 12:26:02 +0200 Subject: [PATCH] - Fix Application Dir spaces support. --- ReleaseNotes.txt | 8 ++++++++ bin/run.sh | 2 +- env.dist | 2 +- src/sbin/user_add_exec | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 6df15b7..7fdd42b 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,3 +1,11 @@ +------------------------------------------------------------------------------------------------------------------------------------ +Rx3-Docker/X11-Pulse V 1.2.4 - A. GIBERT - 2025/04/21 +------------------------------------------------------------------------------------------------------------------------------------ + +- Fix Application Dir spaces support. + + + ------------------------------------------------------------------------------------------------------------------------------------ Rx3-Docker/X11-Pulse V 1.2.3 - A. GIBERT - 2025/04/14 ------------------------------------------------------------------------------------------------------------------------------------ diff --git a/bin/run.sh b/bin/run.sh index e1dfedb..e3855ca 100755 --- a/bin/run.sh +++ b/bin/run.sh @@ -32,7 +32,7 @@ shift -APPL_DIR=$(realpath ${APPL_DIR}) +APPL_DIR=$(realpath "${APPL_DIR}") export USER_ID=$(id -u) export GROUP_ID=$(id -g) diff --git a/env.dist b/env.dist index 5b72682..00562d7 100644 --- a/env.dist +++ b/env.dist @@ -20,7 +20,7 @@ ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}" APPL_NAME="x11-pulse" APPL_NAME_FULL="X11-Pulse Docker Image" APPL_NAME_SHORT="x11-pulse" -APPL_VERSION="1.2.3" +APPL_VERSION="1.2.4" HOST_NAME_PREFIX=${APPL_NAME_SHORT}${APPL_SUFFIX} diff --git a/src/sbin/user_add_exec b/src/sbin/user_add_exec index 4f785da..134427d 100755 --- a/src/sbin/user_add_exec +++ b/src/sbin/user_add_exec @@ -2,7 +2,7 @@ for arg in User_Id User_Name Home_Dir Group_Id Group_Name Appl_Dir do - declare "$arg"=$1 + declare "$arg"="$1" shift done