]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
tasks.py: fix bear format
authorromeroalx <alexis.romero@open-xchange.com>
Tue, 6 May 2025 09:08:50 +0000 (11:08 +0200)
committerromeroalx <alexis.romero@open-xchange.com>
Tue, 6 May 2025 09:08:50 +0000 (11:08 +0200)
tasks.py

index 22e0b3dd15975abe584ed4d7a0ac1efc6e76d82b..f01c9cbdd19c763d91b29ef3f72d42f749c0be34 100644 (file)
--- a/tasks.py
+++ b/tasks.py
@@ -531,7 +531,7 @@ def ci_auth_make(c):
 def ci_auth_make_bear(c):
     # Needed for clang-tidy -line-filter vs project structure shenanigans
     with c.cd('pdns'):
-        c.run('bear --append make -j8 -k V=1 -C ..')
+        c.run('bear --append -- make -j8 -k V=1 -C ..')
 
 @task
 def ci_rec_make(c):
@@ -540,7 +540,7 @@ def ci_rec_make(c):
 @task
 def ci_rec_make_bear(c):
     # Assumed to be running under ./pdns/recursordist/
-    c.run('bear --append make -j8 -k V=1')
+    c.run('bear --append -- make -j8 -k V=1')
 
 @task
 def ci_dnsdist_make(c):
@@ -549,7 +549,7 @@ def ci_dnsdist_make(c):
 @task
 def ci_dnsdist_make_bear(c):
     # Assumed to be running under ./pdns/dnsdistdist/
-    c.run('bear --append make -j4 -k V=1')
+    c.run('bear --append -- make -j4 -k V=1')
 
 @task
 def ci_auth_install_remotebackend_test_deps(c):