mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use expanduser to deal with path in bower module
So bower module can correctly handle path containing `~`
This commit is contained in:
parent
a7b46316c1
commit
b67e4a19ab
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ def main():
|
|||
|
||||
name = module.params['name']
|
||||
offline = module.params['offline']
|
||||
path = module.params['path']
|
||||
path = os.path.expanduser(module.params['path'])
|
||||
state = module.params['state']
|
||||
version = module.params['version']
|
||||
|
||||
|
|
Loading…
Reference in a new issue