mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #6612 from willthames/npm_fix_nonexistent_path
Allow npm to install to a directory that doesn't yet exist
This commit is contained in:
commit
5b9b5fd00d
1 changed files with 4 additions and 0 deletions
|
@ -139,6 +139,10 @@ class Npm(object):
|
|||
#If path is specified, cd into that path and run the command.
|
||||
cwd = None
|
||||
if self.path:
|
||||
if not os.path.exists(self.path):
|
||||
os.makedirs(self.path)
|
||||
if not os.path.isdir(self.path):
|
||||
self.module.fail_json(msg="path %s is not a directory" % self.path)
|
||||
cwd = self.path
|
||||
|
||||
rc, out, err = self.module.run_command(cmd, check_rc=check_rc, cwd=cwd)
|
||||
|
|
Loading…
Reference in a new issue