Merge pull request #270 from Tenzer/npm-path-handling

NPM: Expand the path before accessing it
This commit is contained in:
Brian Coca 2015-02-18 12:29:52 -05:00
commit e250c00113

View file

@ -149,6 +149,7 @@ class Npm(object):
#If path is specified, cd into that path and run the command.
cwd = None
if self.path:
self.path = os.path.abspath(os.path.expanduser(self.path))
if not os.path.exists(self.path):
os.makedirs(self.path)
if not os.path.isdir(self.path):