]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
docs: fix checksrc warning, fix checkdocs CI filter
authorViktor Szakats <commit@vsz.me>
Fri, 14 Nov 2025 16:09:50 +0000 (17:09 +0100)
committerViktor Szakats <commit@vsz.me>
Fri, 14 Nov 2025 16:32:04 +0000 (17:32 +0100)
Also:
- GHA/checkdocs: fix CI filters to catch it early.
  Follow-up to 28dd14aafe2692a3e7dceb40340554c03c127cf1 #15797

Closes #19533

.github/workflows/checkdocs.yml
docs/libcurl/curl_multi_perform.md

index dbdd556557b533cbddc899558eb2954dcb680372..8caf9479fde5b131b7c454a7e346ba3d764cc633 100644 (file)
@@ -14,6 +14,7 @@ name: 'Docs'
       - '*/ci'
     paths:
       - '.github/workflows/checkdocs.yml'
+      - '.github/scripts/**'
       - '.github/scripts/mdlinkcheck'
       - '/scripts/**'
       - '**.md'
@@ -25,6 +26,7 @@ name: 'Docs'
       - '.github/workflows/checkdocs.yml'
       - '.github/scripts/**'
       - '.github/scripts/mdlinkcheck'
+      - '/scripts/**'
       - '**.md'
       - 'docs/*'
 
index 9ca13c679347f2ae8338c251a607fd25ea155138..6e5f0cd8cf7b963c84175f59ab5dba005b4548c7 100644 (file)
@@ -85,8 +85,7 @@ int main(void)
         break;
       }
 
-    /* if there are still transfers, loop */
-    } while(still_running);
+    } while(still_running);  /* if there are still transfers, loop */
   }
 }
 ~~~