From 10ead634b9109f304d6276060b3cb733af3e7a68 Mon Sep 17 00:00:00 2001 From: rwaldron Date: Mon, 26 Apr 2021 15:35:29 -0400 Subject: [PATCH] README: Update QuickJS install on macOS --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6efaad1..4695d64 100644 --- a/README.md +++ b/README.md @@ -94,8 +94,8 @@ eshost --add "xs" xs $ESHOST_PATH_XS; ##### This will install QuickJS on macOS ```sh -if [ "$(uname)" = Darwin ]; then wget https://bellard.org/quickjs/quickjs-2020-01-19.tar.xz; tar -xf quickjs-2020-01-19.tar.xz; -cd quickjs-2020-01-19 && make; if [ -f "$PWD/run-test262" ]; then ln -s $PWD/run-test262 /usr/local/bin/qjs-for-eshost; fi; fi; +if [ "$(uname)" = Darwin ]; then wget https://bellard.org/quickjs/quickjs-2021-03-27.tar.xz; tar -xf quickjs-2021-03-27.tar.xz; +cd quickjs-2021-03-27 && make; if [ -f "$PWD/run-test262" ]; then ln -s $PWD/run-test262 /usr/local/bin/qjs-for-eshost; fi; fi; ```