diff options
Diffstat (limited to 'test_vagrant_macos.sh')
-rwxr-xr-x | test_vagrant_macos.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test_vagrant_macos.sh b/test_vagrant_macos.sh index 98ad091..f95d43a 100755 --- a/test_vagrant_macos.sh +++ b/test_vagrant_macos.sh @@ -1,6 +1,9 @@ #!/bin/sh set -e -x +# libfuse3 is disabled for macos since there's no support in macfuse +# see https://github.com/osxfuse/osxfuse/issues/390 + trap "vagrant destroy --force; rm -rf Vagrantfile" SIGINT SIGTERM ERR EXIT rm -rf Vagrantfile @@ -21,7 +24,7 @@ cd xxx rm -rf build mkdir build cd build -cmake .. +cmake .. -DWITH_LIBFUSE3=FALSE make python3 ../test_all.py |