From 50450daca48a1c07f0b278446a6d879229beb675 Mon Sep 17 00:00:00 2001 From: Robb Ebright Date: Sun, 13 Oct 2019 08:18:43 -0400 Subject: [PATCH] Revert "Support for macOS Catalina (NFS sync fix)" This reverts commit bd328fba717cbc683cfef765b0cdb375024ba0c4. --- Vagrantfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 88b2b041b..b8e34a1ef 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -14,11 +14,7 @@ Vagrant.configure("2") do |config| config.vm.network "forwarded_port", guest: 8888, host:8888 # make sure we are using nfs (doesn't work out of the box with debian) - nfsPath = "." - if Dir.exist?("/System/Volumes/Data") - nfsPath = "/System/Volumes/Data" + Dir.pwd - end - config.vm.synced_folder nfsPath, "/vagrant", type: "nfs" + config.vm.synced_folder ".", "/vagrant", type: "nfs" # private network for nfs config.vm.network "private_network", ip: "192.168.10.100"