Double backslashes

This commit is contained in:
jspijker 2023-02-28 13:23:10 +01:00
parent f101d0494f
commit 3ac3308e20

View File

@ -285,7 +285,7 @@ jobs:
if os.path.exists(conan_install_info_path): if os.path.exists(conan_install_info_path):
with open(conan_install_info_path, "r") as f: with open(conan_install_info_path, "r") as f:
conan_info = json.load(f) conan_info = json.load(f)
sorted_deps = sorted([dep["recipe"]["id"].replace('#', r'\#') for dep in conan_info["installed"]]) sorted_deps = sorted([dep["recipe"]["id"].replace('#', r'\\#') for dep in conan_info["installed"]])
summary_env = os.environ["GITHUB_STEP_SUMMARY"] summary_env = os.environ["GITHUB_STEP_SUMMARY"]
content = "" content = ""