Skip to content

Commit

Permalink
Store absolute path to the intercepted command
Browse files Browse the repository at this point in the history
  • Loading branch information
17451k committed Jan 25, 2021
1 parent 3cb4fae commit 9083fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clade/extensions/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def _get_cmd_dict(self, cmd):
"out": [],
"opts": [],
"cwd": cmd["cwd"],
"command": cmd["command"],
"command": [cmd["which"]] + cmd["command"][1:],
}

def parse_cmd(self, cmd, cmd_type):
Expand Down

0 comments on commit 9083fca

Please sign in to comment.