NPM: Expand the path before accessing it
This commit is contained in:
parent
9f11d10135
commit
a2d440ccea
1 changed files with 1 additions and 0 deletions
|
@ -149,6 +149,7 @@ class Npm(object):
|
||||||
#If path is specified, cd into that path and run the command.
|
#If path is specified, cd into that path and run the command.
|
||||||
cwd = None
|
cwd = None
|
||||||
if self.path:
|
if self.path:
|
||||||
|
self.path = os.path.abspath(os.path.expanduser(self.path))
|
||||||
if not os.path.exists(self.path):
|
if not os.path.exists(self.path):
|
||||||
os.makedirs(self.path)
|
os.makedirs(self.path)
|
||||||
if not os.path.isdir(self.path):
|
if not os.path.isdir(self.path):
|
||||||
|
|
Loading…
Reference in a new issue