We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9645c7f commit e8d3d8dCopy full SHA for e8d3d8d
setup.py
@@ -5,7 +5,7 @@
5
6
setup(
7
name="treescriptify",
8
- version="0.1.1",
+ version="0.1.2",
9
description="Create TreeScript from an existing filesystem tree.",
10
long_description=open('README.md').read(),
11
long_description_content_type='text/markdown',
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(
12
- args='tree -Jix --noreport ' + _check_arguments(data),
+ args='tree -Ji --noreport ' + _check_arguments(data),
13
capture_output=True,
14
text=True,
15
shell=True,
0 commit comments