We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64b3568 commit 7526337Copy full SHA for 7526337
2 files changed
.gitattributes
@@ -0,0 +1 @@
1
+*.sh text eol=lf
src/plugins/terminal/scripts/init-sandbox.sh
@@ -39,16 +39,19 @@ fi
39
40
ARGS="--kill-on-exit"
41
42
-for system_mnt in /apex /odm /product /system /system_ext /vendor \
43
- /linkerconfig/ld.config.txt \
44
- /linkerconfig/com.android.art/ld.config.txt \
45
- /plat_property_contexts /property_contexts; do
+
+for system_mnt in /apex /odm /product /system /system_ext /vendor /linkerconfig/ld.config.txt /linkerconfig/com.android.art/ld.config.txt /plat_property_contexts /property_contexts; do
46
47
if [ -e "$system_mnt" ]; then
48
system_mnt=$(realpath "$system_mnt")
49
ARGS="$ARGS -b ${system_mnt}"
50
fi
51
done
52
53
54
55
unset system_mnt
56
57
ARGS="$ARGS -b /sdcard"
0 commit comments