1
0
mirror of https://github.com/mintty/wsltty.git synced 2024-10-05 18:31:04 +01:00

filter out "docker" default distributions from configuration (#277)

This commit is contained in:
mintty 2021-04-09 00:00:00 +02:00
parent ee4e403f4c
commit 6e74ab4d5b

View File

@ -295,6 +295,10 @@ config () {
docker*) echo skipping docker system docker*) echo skipping docker system
return;; return;;
esac esac
case "$root" in
*\\Docker*) echo skipping docker system
return;;
esac
if $ok && ! $remove && [ -n "$distro" ] if $ok && ! $remove && [ -n "$distro" ]
then # fix #163: backend missing +x with certain mount options then # fix #163: backend missing +x with certain mount options