diff options
-rw-r--r-- | mdbp/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdbp/common.py b/mdbp/common.py index df434cb..8b7f8c1 100644 --- a/mdbp/common.py +++ b/mdbp/common.py @@ -75,7 +75,7 @@ def compute_env(build: JsonObject) -> typing.Dict[str, str]: parallel = "%d" % multiprocessing.cpu_count() options = build.get("options", []) if parallel: - options.append("parallel=" + parallel) + options.append("parallel=" + str(parallel)) if options: env["DEB_BUILD_OPTIONS"] = " ".join(options) return env |