You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to bypass a check that prevents the script from investigating an unknown macOS release, you can set the NOCHECK environment variable.
39
39
40
40
```bash
41
-
$export NOCHECK=1
41
+
%export NOCHECK=1
42
42
```
43
43
44
44
In order to see details from the mount actions and additional messages, you can enable debug output by exporting the DEBUG environment variable. Usually there is no need to do that.
45
45
46
46
```bash
47
-
$export DEBUG=/dev/stdout
47
+
%export DEBUG=/dev/stdout
48
48
```
49
-
49
+
50
50
If you want to disable debug mode, enter
51
51
52
52
```bash
53
-
$export DEBUG=
53
+
%export DEBUG=
54
54
```
55
55
56
56
57
57
How to run it without installing it
58
58
-----------------------------------
59
59
```
60
-
curl -Ls https://bit.ly/osxapp_vers | bash
60
+
% curl -Ls https://bit.ly/osxapp_vers | bash
61
61
```
62
62
63
63
@@ -137,7 +137,7 @@ BuildVersion: 22A380
137
137
If you specify program parameters, the script prints out product name, product version and build version for each Install OS X .app folder that you have specified.
138
138
139
139
```bash
140
-
$ ./osxapp_vers '/Applications/Install OS X Mavericks.app'
140
+
% ./osxapp_vers '/Applications/Install OS X Mavericks.app'
141
141
142
142
/Applications/Install OS X Mavericks.app:
143
143
ProductName: Mac OS X
@@ -148,7 +148,7 @@ BuildVersion: 13E28
148
148
If you have created a bootable macOS install media with `createinstallmedia` (that command line tool is provided by Apple as part of the OS X installer starting with Mavericks), you could also find out the version of macOS version that is on the install media by specifying the path to the .app folder.
149
149
150
150
```bash
151
-
./osxapp_vers '/Volumes/Install OS X Mavericks/Install OS X Mavericks.app/'
151
+
% ./osxapp_vers '/Volumes/Install OS X Mavericks/Install OS X Mavericks.app/'
152
152
153
153
/Volumes/Install OS X Mavericks/Install OS X Mavericks.app/:
0 commit comments