From ed5a71162e71cecd0e9a2b7e3dba40bac67fb13d Mon Sep 17 00:00:00 2001 From: w1nst0n Date: Sat, 20 Jun 2020 02:38:23 +0200 Subject: [PATCH] Updated MacOS instructions (see issue #5) --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8fb21d2..fa87dca 100644 --- a/README.md +++ b/README.md @@ -88,8 +88,23 @@ $ sudo yum install android-tools qpdf - Install [Homebrew](https://brew.sh/) - Install *Android plateform tools* and *qpdf* + +You will also need to upgrade your bash package because Apple ships a very old bash version (3.2.57) due to licencing issues. + ```bash -$ brew install android-platform-tools qpdf +$ brew install android-platform-tools qpdf bash +``` + +You have to make the new bash version your default : + +```bash +$ sudo echo "/usr/local/bin/bash" >> /etc/shells +$ chsh -s /usr/local/bin/bash +``` +Check if it works : + +```bash +$ echo $BASH_VERSION ```