Skip to content

Commit

Permalink
[ci] Put image last in docker invocation!
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel-Naumann committed Aug 23, 2023
1 parent 06415cf commit 878d315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/root-ci-config/build_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def print(self) -> None:
if self.image:
print(f"""\
Grab the image:
$ docker run -it {self.image} {' '.join(self.docker_opts)}
$ docker run {' '.join(self.docker_opts)} -it {self.image}
Then:
""")
print(self.trace)
Expand Down

0 comments on commit 878d315

Please sign in to comment.