From a3a7de28959c93194a096597d4d35f3766f9ec6f Mon Sep 17 00:00:00 2001 From: sadawqe Date: Mon, 7 Oct 2024 17:39:18 +0300 Subject: [PATCH] Fixed "Command Line Software Update Utility" script in "mac-install.md" file Previous "Command Line Software Update Utility" script was not working and I fixed it. --- installer-guide/mac-install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer-guide/mac-install.md b/installer-guide/mac-install.md index 97a37cdca9..01483e96a0 100644 --- a/installer-guide/mac-install.md +++ b/installer-guide/mac-install.md @@ -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)