From 9f41b75efc94e68e131cc7aa090320a7ee65ef50 Mon Sep 17 00:00:00 2001 From: Ian Gallagher Date: Fri, 24 Mar 2023 17:32:39 +1300 Subject: [PATCH] Add aria2 package to prerequisites and homebrew example * This resolves issue #38 * This ensures that the aria2 homebrew package is installed, which provides the `aria2c` command used to download files. * This only changes instructions in the readme file, there are no actual code changes in this commit/PR. --- readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index cbfc97a..04a163d 100644 --- a/readme.md +++ b/readme.md @@ -63,6 +63,7 @@ VIRTUAL_EDITIONS_LIST='space delimited editions sequence' ### Requirements This script uses the following commands to do its work: + * aria2c - to download the required files * cabextract - to extract cabs * wimlib-imagex - to export files from metadata ESD * chntpw - to modify registry of first index of boot.wim @@ -94,6 +95,6 @@ After Homebrew was installed, you can install the requirements using: ```bash brew tap sidneys/homebrew -brew install cabextract wimlib cdrtools sidneys/homebrew/chntpw +brew install aria2 cabextract wimlib cdrtools sidneys/homebrew/chntpw ```