From de36ba79e98978f751a8020f27fdd536ac80234e Mon Sep 17 00:00:00 2001 From: Callum Leslie Date: Sat, 9 Jul 2022 09:32:01 +0000 Subject: [PATCH] fix: add hints for playwright on arch --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 7f24870..4eae0ae 100644 --- a/install.sh +++ b/install.sh @@ -117,7 +117,9 @@ function install_playwright(){ python3 -m playwright install python3 -m playwright install-deps # give a note - printf "Note, if these gave any errors, please run this command This will (maybe) fix the issue with playwright.\npython -m playwright install && python -m playwright install-deps" + printfNote, if these gave any errors, playwright may not be officially supported on your OS, check this issues page for support\nhttps://github.com/microsoft/playwright/issues "Note, if these gave any errors, playwright may not be officially supported on your OS, check this issues page for support\nhttps://github.com/microsoft/playwright/issues\n" + if [ -x "$(command -v pacman)" ]; then + printf "It seems you are on and Arch based distro.\nTry installing these from the AUR for playwright to run:\nenchant1.6\nicu66\nlibwebp052\n" cd .. }