Skip to content

Commit da21dff

Browse files
committed
fix: fix incorrect abspath
1 parent 7f616a7 commit da21dff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pywrangler/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def run_command(
148148
logger.error(f"Command not found: {command[0]}. Is it installed and in PATH?")
149149
raise click.exceptions.Exit(code=1)
150150

151-
command = [Path(abspath).name] + command[1:]
151+
command = [abspath] + command[1:]
152152
try:
153153
kwargs = {}
154154
if capture_output:

0 commit comments

Comments
 (0)