From 3dea7e637925df039d990204594e06b110e5b50e Mon Sep 17 00:00:00 2001 From: epi052 Date: Sun, 12 Jan 2020 15:54:48 -0600 Subject: [PATCH] minor bugfix related to installation --- recon-pipeline.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recon-pipeline.py b/recon-pipeline.py index 1548b86..bb52e96 100755 --- a/recon-pipeline.py +++ b/recon-pipeline.py @@ -306,9 +306,7 @@ class ReconShell(cmd2.Cmd): self.poutput(style(f"Installing {args.tool}...", fg="blue", bold=True)) for command in tools.get(args.tool).get("commands"): - if tools.get(args.tool).get("shell") and command.startswith( - "(" - ): # go installs use subshells (...) + if tools.get(args.tool).get("shell"): # go installs use subshells (...) subprocess.run(command, shell=True) else: subprocess.run(shlex.split(command))