actually use argv argument
This commit is contained in:
parent
0fc052efe0
commit
b7e7ab2336
|
@ -30,7 +30,7 @@ def split_commands(tokens):
|
|||
|
||||
def main():
|
||||
command = sys.argv[1] if len(sys.argv) > 1 else INPUTCMD
|
||||
oneliner = shlex.shlex(INPUTCMD, posix=True, punctuation_chars=True)
|
||||
oneliner = shlex.shlex(command, posix=True, punctuation_chars=True)
|
||||
stages = []
|
||||
|
||||
last_stage = None
|
||||
|
|
Loading…
Reference in New Issue