Skip to content

Commit

Permalink
Fix softwareupdate --fetch-full-installer script (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
sadawqe authored Oct 13, 2024
1 parent 87e32d6 commit 94aec91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer-guide/mac-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ From a macOS machine that meets the requirements of the OS version you want to i
Open a terminal window then copy and paste the below command:

```sh
softwareupdate --list-full-installers;echo;echo "Please enter version number you wish to download:";read;$(if [ -n "$REPLY" ]; then; echo "softwareupdate --fetch-full-installer --full-installer-version "$REPLY; fi);
softwareupdate --list-full-installers; echo; echo "Please enter version number you wish to download:"; read REPLY; [ -n "$REPLY" ] && softwareupdate --fetch-full-installer --full-installer-version "$REPLY"
```

![](../images/installer-guide/mac-install-md/commandlinesoftwareupdateutility.png)
Expand Down

0 comments on commit 94aec91

Please sign in to comment.