You've already forked cookiecutter-ansible-role
Initial Import
This commit is contained in:
9
hooks/post_gen_project.py
Normal file
9
hooks/post_gen_project.py
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import os
|
||||
|
||||
for dirpath, dirs, files in os.walk(os.getcwd()):
|
||||
if 'keep' in files:
|
||||
for file in files:
|
||||
path = os.path.join(dirpath, file)
|
||||
os.unlink(path)
|
||||
Reference in New Issue
Block a user