We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d0436d commit 25b8206Copy full SHA for 25b8206
runtimeScript.sh
@@ -363,7 +363,8 @@ if [ "$NP_RUNTIME" == "nix" ]; then
363
recreate_nix_conf
364
elif [ "$NP_RUNTIME" == "bwrap" ]; then
365
collectBinds
366
- makeBindArgs --bind " " "$toBind" "$sslBind"
+ # shellcheck disable=SC2086
367
+ makeBindArgs --bind " " $toBind $sslBind
368
run="$NP_BWRAP $BWRAP_ARGS \
369
--bind $dir/emptyroot / \
370
--dev-bind /dev /dev \
@@ -373,7 +374,8 @@ elif [ "$NP_RUNTIME" == "bwrap" ]; then
373
374
else
375
# proot
376
- makeBindArgs -b ":" "$toBind" "$sslBind"
377
378
+ makeBindArgs -b ":" $toBind $sslBind
379
run="$NP_PROOT $PROOT_ARGS \
380
-r $dir/emptyroot \
381
-b /dev:/dev \
0 commit comments