From 66c010bbc8cd32aa2253303db0730d40d15c8432 Mon Sep 17 00:00:00 2001 From: Cyryl Plotnicki-Chudyk Date: Tue, 18 Aug 2015 20:59:14 +0200 Subject: [PATCH] create the .npm directory if it does not exist --- common/configure_fresh_system | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 774064db..e57c3927 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -86,7 +86,8 @@ echo "installing vdirsyncer" sudo pip install vdirsyncer # normalize npm permissions -sudo chown $USER .npm -R +mkdir -p $HOME/.npm +sudo chown $USER $HOME/.npm -R echo echo "now go ahead and restart"