fix(build): Add of double quotes around variables
Signed-off-by: Baptiste Fotia <fotia.baptiste@hotmail.com>
This commit is contained in:
+2
-2
@@ -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"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user