From 3ac3308e2044614462e4887ff879d5ea29f9d05f Mon Sep 17 00:00:00 2001 From: jspijker Date: Tue, 28 Feb 2023 13:23:10 +0100 Subject: [PATCH] Double backslashes --- .github/workflows/cura-installer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index a90b4f4372..f482147517 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -285,7 +285,7 @@ jobs: if os.path.exists(conan_install_info_path): with open(conan_install_info_path, "r") as 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"] content = ""