We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5abdd4 commit 7393941Copy full SHA for 7393941
ctfcli/cli/challenges.py
@@ -578,7 +578,7 @@ def install(
578
if isinstance(ignore, str):
579
ignore = (ignore,)
580
581
- config = Config()
+ _config = Config()
582
remote_challenges = Challenge.load_installed_challenges()
583
584
failed_installs = []
@@ -590,9 +590,7 @@ def install(
590
challenge_instance["state"] = "hidden"
591
592
click.secho(
593
- f"Installing '{challenge_instance}' ("
594
- f"{challenge_instance.challenge_file_path.relative_to(config.project_path)}"
595
- f") ...",
+ f"Installing '{challenge_instance}' ({challenge_instance.challenge_file_path}) ...",
596
fg="blue",
597
)
598
0 commit comments