From 0d42e2a71bcb6b35c897b215483e97184f9512c8 Mon Sep 17 00:00:00 2001 From: Utku Demir <50655392+Demir-Utku@users.noreply.github.com> Date: Tue, 7 Dec 2021 10:18:43 +0300 Subject: [PATCH] Update tips.md Need to update the resolving permission errors part for Arch Linux based distros --- docs/developing/tips.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/developing/tips.md b/docs/developing/tips.md index 0be0a74c7f1..01d2553a8aa 100644 --- a/docs/developing/tips.md +++ b/docs/developing/tips.md @@ -57,6 +57,7 @@ Change the owner of npm's directories to the current user: ```shell $ sudo chown -R $(whoami) /usr/local/{lib/node_modules,bin,share} +$ sudo chown -R $(whoami) /usr/lib/node_modules # Improve for Arch Linux based distros $ sudo chown -R $(whoami) ~/.npm ~/.npmrc ```