Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido committed Oct 2, 2024
1 parent 27ccfea commit 02d00ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conan/internal/runner/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def __init__(self, conan_api, command, host_profile, build_profile, args, raw_ar
# Update conan command and some paths to run inside the container
raw_args[raw_args.index(args.path)] = self.abs_docker_path
self.command = ' '.join([f'conan {command}'] + [f'"{raw_arg}"' if ' ' in raw_arg else raw_arg for raw_arg in raw_args] + ['-f json > create.json'])
self.command = "pwd && ls && ls /root && ls /root/.conan2 && " + self.command
self.command = "pwd && ls /root/conanrunner/pathwithoutspaces && " + self.command

def run(self):
"""
Expand Down

0 comments on commit 02d00ae

Please sign in to comment.