Merge pull request #115936 from matthewmazzanti/bubblewrap-hardcode-readlink
fhs-userenv-bubblewrap: Add store path to readlink
This commit is contained in:
commit
8af17b602c
|
@ -95,7 +95,7 @@ let
|
||||||
if [[ $path == '/etc' ]]; then
|
if [[ $path == '/etc' ]]; then
|
||||||
:
|
:
|
||||||
elif [[ -L $i ]]; then
|
elif [[ -L $i ]]; then
|
||||||
symlinks+=(--symlink "$(readlink "$i")" "$path")
|
symlinks+=(--symlink "$(${coreutils}/bin/readlink "$i")" "$path")
|
||||||
blacklist+=("$path")
|
blacklist+=("$path")
|
||||||
else
|
else
|
||||||
ro_mounts+=(--ro-bind "$i" "$path")
|
ro_mounts+=(--ro-bind "$i" "$path")
|
||||||
|
|
Loading…
Reference in New Issue