Skip to content

Commit

Permalink
Release 0.1.2 (#13)
Browse files Browse the repository at this point in the history
Publishing:
* Update setup.py - update version 0.1.2

Treescriptify:
* Update tree_runner.py - remove the x argument
  • Loading branch information
DK96-OS authored Apr 21, 2024
1 parent 9645c7f commit e8d3d8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion treescriptify/tree_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit e8d3d8d

Please # to comment.