Compare commits
No commits in common. "bd43832eee3a1228c40f26aa96d3b18fda680351" and "0fc052efe05a19dd4c2021ca6b80184dfdf57d3a" have entirely different histories.
bd43832eee
...
0fc052efe0
|
@ -30,10 +30,7 @@ def split_commands(tokens):
|
|||
|
||||
def main():
|
||||
command = sys.argv[1] if len(sys.argv) > 1 else INPUTCMD
|
||||
if command.strip() == "-":
|
||||
command = sys.stdin.read()
|
||||
|
||||
oneliner = shlex.shlex(command, posix=True, punctuation_chars=True)
|
||||
oneliner = shlex.shlex(INPUTCMD, posix=True, punctuation_chars=True)
|
||||
stages = []
|
||||
|
||||
last_stage = None
|
||||
|
|
Loading…
Reference in New Issue