mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-26 04:03:11 +00:00
Merge pull request #173 from justincormack/wintmp
fix #169 only do /tmp bind mount if /Mac/tmp exists
This commit is contained in:
commit
223ef9f9db
@ -49,7 +49,7 @@ start()
|
|||||||
export no_proxy="$(mobyconfig get proxy/exclude)"
|
export no_proxy="$(mobyconfig get proxy/exclude)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
grep "osxfs /tmp" /etc/mtab -q || mount --bind /Mac/tmp /tmp
|
grep -q "osxfs /tmp" /etc/mtab || ( [ -d /Mac/tmp ] && mount --bind /Mac/tmp /tmp )
|
||||||
|
|
||||||
for d in Users Volumes private
|
for d in Users Volumes private
|
||||||
do
|
do
|
||||||
|
Loading…
Reference in New Issue
Block a user