Skip to content

Commit e8d3d8d

Browse files
authored
Release 0.1.2 (#13)
Publishing: * Update setup.py - update version 0.1.2 Treescriptify: * Update tree_runner.py - remove the x argument
1 parent 9645c7f commit e8d3d8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="treescriptify",
8-
version="0.1.1",
8+
version="0.1.2",
99
description="Create TreeScript from an existing filesystem tree.",
1010
long_description=open('README.md').read(),
1111
long_description_content_type='text/markdown',

treescriptify/tree_runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def get_tree_json(data: InputData) -> str:
99
"""Obtain the Tree Information as a JSON string.
1010
"""
1111
result = subprocess.run(
12-
args='tree -Jix --noreport ' + _check_arguments(data),
12+
args='tree -Ji --noreport ' + _check_arguments(data),
1313
capture_output=True,
1414
text=True,
1515
shell=True,

0 commit comments

Comments
 (0)