Files
cookiecutter-ansible-role/local_extensions.py

10 lines
192 B
Python
Raw Normal View History

2024-01-06 23:37:45 +13:00
import os
from cookiecutter.utils import simple_filter
@simple_filter
def basename(path):
return os.path.basename(path)
@simple_filter
def dirname(path):
return os.path.dirname(path)