diff --git a/.github/scripts/common.py b/.github/scripts/common.py index ef8efcd..47d719b 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -28,7 +28,7 @@ def get_build_dir(config) -> Path: command.append("--use-target-arch-name") return Path( subprocess.run(command, cwd=str(HOME), check=True, stdout=subprocess.PIPE) - .stdout[:-1] + .stdout.strip() .decode("utf8") )