Code quality #2191

Merged
PeterSurda merged 1 commits from cq-1 into v0.6 2024-03-03 07:14:16 +01:00
Showing only changes of commit 19ec364b72 - Show all commits

View File

@ -273,10 +273,11 @@ def buildCPoW():
if "bsd" in sys.platform:
# BSD make
call(["make", "-C", os.path.join(paths.codePath(), "bitmsghash"),
'-f', 'Makefile.bsd']) # nosec:B607, B603
'-f', 'Makefile.bsd']) # nosec B607, B603
else:
# GNU make
call(["make", "-C", os.path.join(paths.codePath(), "bitmsghash")]) # nosec:B607, B603
call(["make", "-C", os.path.join(paths.codePath(),
"bitmsghash")]) # nosec B607, B603
if os.path.exists(os.path.join(paths.codePath(), "bitmsghash", "bitmsghash.so")):
init()
notifyBuild(True)