Skip to content

Commit 83ef211

Browse files
committed
Bumping to 2.2.4. Now that Fusion 11.5 is out, we can prep for catalina
ran a vfuse test and verified the settings in the vmx ``` % grep darwin macos-vm.vmwarevm/macos-vm.vmx guestos = "darwin19-64" ``` ``` % grep hw macos-vm.vmwarevm/macos-vm.vmx virtualhw.version = "16" ```
1 parent 5d16754 commit 83ef211

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Shameless fork from the far superior https://github.com/clburlison/pinpoint/blob/master/Makefile
22

33
PKGTITLE="vfuse"
4-
PKGVERSION="2.2.3"
4+
PKGVERSION="2.2.4"
55
PKGID=com.github.vfuse
66
PROJECT="vfuse"
77

pkgroot/usr/local/vfuse/bin/vfuse

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ except ImportError:
5252
from urllib2 import urlopen, HTTPError
5353

5454

55-
__version__ = "2.2.3"
55+
__version__ = "2.2.4"
5656

5757

5858
class Error(Exception):
@@ -1054,6 +1054,7 @@ def main():
10541054
# 10.12 (darwin16-64) requires virtualHW.version 12 # What?? Apparently so.
10551055
# 10.13 (darwin17-64) requires virtualHW.version 14
10561056
# 10.14 (darwin18-64) requires virtualHW.version 16 # yer killing me, VMware
1057+
# 10.15 (darwin19-64) requires virtualHW.version 16 # well ok, then
10571058
if os_rev == 12:
10581059
hw_check = os_rev
10591060
elif os_rev == 14:
@@ -1072,8 +1073,8 @@ def main():
10721073

10731074
# Temporarily drops the guest_os down by one
10741075
# Uncomment these lines during macOS beta season
1075-
if os_rev >= 15:
1076-
os_rev = os_rev - 1
1076+
# if os_rev >= 15:
1077+
# os_rev = os_rev - 1
10771078
guest_os = "darwin%d-64" % (os_rev + 4)
10781079

10791080
if volume_kind == "apfs":

0 commit comments

Comments
 (0)