From 19d902f25a5aa9430d6871bb7f38efacc0d0199d Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Tue, 12 Jun 2018 09:49:11 +0200 Subject: [PATCH] scripts: quote correctly to not cause errors --- scripts/anbox-init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/anbox-init.sh b/scripts/anbox-init.sh index f8ac1c6..54cdd6a 100644 --- a/scripts/anbox-init.sh +++ b/scripts/anbox-init.sh @@ -17,7 +17,7 @@ function prepare_filesystem() { # These dev files need to be adjusted everytime as they are # bind mounted into the temporary rootfs for f in qemu_pipe qemu_trace goldfish_pipe input/* ; do - if [ ! -e /dev/$f ] ; then + if [ ! -e "/dev/$f" ] ; then continue fi chown system:system /dev/$f