Merge pull request #1006 from michelboaventura/patch-1

Skip fuse install on gentoo if already installed
This commit is contained in:
Jeremy Soller 2017-07-26 19:06:36 -06:00 committed by GitHub
commit f1f264c8a3

View file

@ -281,8 +281,10 @@ gentoo()
echo "Installing git..."
sudo emerge dev-vcs/git
fi
echo "Installing fuse..."
sudo emerge sys-fs/fuse
if [ -z "$(which fusermount)" ]; then
echo "Installing fuse..."
sudo emerge sys-fs/fuse
fi
if [ "$2" == "qemu" ]; then
if [ -z "$(which qemu-system-x86_64)" ]; then
echo "Please install QEMU and re-run this script"