diff --git a/hererocks.py b/hererocks.py index 22d3e33..f8766df 100755 --- a/hererocks.py +++ b/hererocks.py @@ -51,11 +51,8 @@ def get_default_cache(): def quote(command_arg): return "'" + command_arg.replace("'", "'\"'\"'") + "'" -def space_cat(*args): - return " ".join(filter(None, args)) - def exec_command(capture, *args): - command = space_cat(*args) + command = " ".join(args) if opts.verbose: print("Running " + command)