Skip to content

Commit

Permalink
Bumping to 2.2.4. Now that Fusion 11.5 is out, we can prep for catalina
Browse files Browse the repository at this point in the history
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"
```
  • Loading branch information
chilcote committed Sep 20, 2019
1 parent 5d16754 commit 83ef211
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Shameless fork from the far superior https://github.com/clburlison/pinpoint/blob/master/Makefile

PKGTITLE="vfuse"
PKGVERSION="2.2.3"
PKGVERSION="2.2.4"
PKGID=com.github.vfuse
PROJECT="vfuse"

Expand Down
7 changes: 4 additions & 3 deletions pkgroot/usr/local/vfuse/bin/vfuse
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ except ImportError:
from urllib2 import urlopen, HTTPError


__version__ = "2.2.3"
__version__ = "2.2.4"


class Error(Exception):
Expand Down Expand Up @@ -1054,6 +1054,7 @@ def main():
# 10.12 (darwin16-64) requires virtualHW.version 12 # What?? Apparently so.
# 10.13 (darwin17-64) requires virtualHW.version 14
# 10.14 (darwin18-64) requires virtualHW.version 16 # yer killing me, VMware
# 10.15 (darwin19-64) requires virtualHW.version 16 # well ok, then
if os_rev == 12:
hw_check = os_rev
elif os_rev == 14:
Expand All @@ -1072,8 +1073,8 @@ def main():

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

if volume_kind == "apfs":
Expand Down

0 comments on commit 83ef211

Please sign in to comment.