diff --git a/setup.py b/setup.py index 2ff9a51..ab5be14 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="treescriptify", - version="0.1.1", + version="0.1.2", description="Create TreeScript from an existing filesystem tree.", long_description=open('README.md').read(), long_description_content_type='text/markdown', diff --git a/treescriptify/tree_runner.py b/treescriptify/tree_runner.py index c7ca057..c4f0cba 100644 --- a/treescriptify/tree_runner.py +++ b/treescriptify/tree_runner.py @@ -9,7 +9,7 @@ def get_tree_json(data: InputData) -> str: """Obtain the Tree Information as a JSON string. """ result = subprocess.run( - args='tree -Jix --noreport ' + _check_arguments(data), + args='tree -Ji --noreport ' + _check_arguments(data), capture_output=True, text=True, shell=True,