From 2e162fe6da0f75e23573cff2549d85d59e21a06f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sp=C3=B6hel?= Date: Fri, 19 Jul 2019 21:14:29 +0200 Subject: Fixing a bug where directories were not created for --bind-ro. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Simon Spöhel Signed-off-by: Daniel Baumann --- lib/container/create | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/container/create b/lib/container/create index 8fa6189..9ae578c 100755 --- a/lib/container/create +++ b/lib/container/create @@ -205,7 +205,7 @@ fi # Creating ro bind mounts if [ -n "${BIND_RO}" ] then - BINDS="$(echo ${BIND_RO} | sed -e 's|;| |g')" + BINDS_RO="$(echo ${BIND_RO} | sed -e 's|;| |g')" for BIND_RO in ${BINDS_RO} do -- cgit v1.2.3