Skip to content

Commit 4d4338f

Browse files
Bug fix in command substitution string generation
1 parent 7293caa commit 4d4338f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

bashparser.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: bashparser
3-
Version: 0.2
3+
Version: 0.3
44
Summary: A framework for manipulating and analysing bash scripts
55
Home-page: https://github.com/BlankCanvasStudio/bashparse
66
Author: Spencer Stingley

bashparser/ast.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def apply_fn(node):
4444
for part in cmd.parts:
4545
word += str(NodeVisitor(part)) + ' '
4646
word = word[:-1] + ')'
47-
self._string = self._string + word + ' '
4847

4948
return DONT_DESCEND
5049

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = bashparser
3-
version = 0.3
3+
version = 0.5
44
author = Spencer Stingley
55
description = A framework for manipulating and analysing bash scripts
66
long_description = A framework for manipulating and analysing bash scripts

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="bashparser",
10-
version="0.3",
10+
version="0.5",
1111
author="Spencer Stingley",
1212
author_email="[email protected]",
1313
description="A framework for manipulating and analysing bash scripts",

0 commit comments

Comments
 (0)