Skip to content

Commit e0469aa

Browse files
committed
added support for Mojave
1 parent c119612 commit e0469aa

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

HISTORY

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
October 20, 2018 v1.6
2+
- simplified check for macos starting with High Sierra in order not to
3+
break on the successor of Mojave
4+
15
September 25, 2018 v1.5
26
- added support for macOS Mojave
37

osxapp_vers

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ else
119119
exit
120120
fi
121121

122-
if [[ -e "$APPNAME/Contents/SharedSupport/BaseSystem.dmg" ]]; then
122+
if [ -f "$APPNAME/Contents/SharedSupport/BaseSystem.dmg" ]; then
123123
# Starting with High Sierra ...
124124
# Mount the BaseSystem.dmg
125125
hdiutil attach "$APPNAME/Contents/SharedSupport/BaseSystem.dmg" \

0 commit comments

Comments
 (0)