We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c119612 commit e0469aaCopy full SHA for e0469aa
HISTORY
@@ -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
+
5
September 25, 2018 v1.5
6
- added support for macOS Mojave
7
osxapp_vers
@@ -119,7 +119,7 @@ else
119
exit
120
fi
121
122
- if [[ -e "$APPNAME/Contents/SharedSupport/BaseSystem.dmg" ]]; then
+ if [ -f "$APPNAME/Contents/SharedSupport/BaseSystem.dmg" ]; then
123
# Starting with High Sierra ...
124
# Mount the BaseSystem.dmg
125
hdiutil attach "$APPNAME/Contents/SharedSupport/BaseSystem.dmg" \
0 commit comments