Skip to content

Commit 25b8206

Browse files
committed
fixup: fix all shellcheck errors
1 parent 9d0436d commit 25b8206

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

runtimeScript.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,8 @@ if [ "$NP_RUNTIME" == "nix" ]; then
363363
recreate_nix_conf
364364
elif [ "$NP_RUNTIME" == "bwrap" ]; then
365365
collectBinds
366-
makeBindArgs --bind " " "$toBind" "$sslBind"
366+
# shellcheck disable=SC2086
367+
makeBindArgs --bind " " $toBind $sslBind
367368
run="$NP_BWRAP $BWRAP_ARGS \
368369
--bind $dir/emptyroot / \
369370
--dev-bind /dev /dev \
@@ -373,7 +374,8 @@ elif [ "$NP_RUNTIME" == "bwrap" ]; then
373374
else
374375
# proot
375376
collectBinds
376-
makeBindArgs -b ":" "$toBind" "$sslBind"
377+
# shellcheck disable=SC2086
378+
makeBindArgs -b ":" $toBind $sslBind
377379
run="$NP_PROOT $PROOT_ARGS \
378380
-r $dir/emptyroot \
379381
-b /dev:/dev \

0 commit comments

Comments
 (0)