mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Use expanduser to deal with path in bower module
So bower module can correctly handle path containing `~`
This commit is contained in:
@@ -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']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user