- Fix Application Dir spaces support.

This commit is contained in:
Arnaud G. GIBERT 2025-04-21 12:26:02 +02:00
parent 3b58d3e99d
commit 8fbec958ed
4 changed files with 11 additions and 3 deletions

View File

@ -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
------------------------------------------------------------------------------------------------------------------------------------

View File

@ -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)

View File

@ -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}

View File

@ -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