fix(build): Add of double quotes around variables

Signed-off-by: Baptiste Fotia <fotia.baptiste@hotmail.com>
This commit is contained in:
Baptiste Fotia
2022-10-07 18:04:56 +02:00
parent 1af93781c3
commit 76eaa76c5c
+2 -2
View File
@@ -38,8 +38,8 @@ function is_installed() {
function init_subnet_docker() {
uuidgen="$(uuidgen)"
idNetwork="$(docker network create -d bridge nextcloud_network_${uuidgen})"
networkName="$(docker network inspect ${idNetwork} | jq .[].Name | tr -d '"')"
idNetwork="$(docker network create -d bridge nextcloud_network_"${uuidgen}")"
networkName="$(docker network inspect "${idNetwork}" | jq .[].Name | tr -d '"')"
echo "$networkName"
}