aboutsummaryrefslogtreecommitdiff
path: root/projects/checksrc.bat
AgeCommit message (Collapse)Author
2020-02-07checksrc.bat: Fix not being able to run script from the main curl directorySteve Holme
If the script was ran from the main curl directory rather then the projects directory then the script would simply exit without error: C:\url> projects\checksrc.bat The user would either need to change to the projects directory, explicitly specify the current working directory, or perform a oneline hacky workaround: C:\url> cd projects C:\url\projects> checksrc.bat C:\url> checksrc.bat %cd% C:\url> pushd projects & checksrc.bat & popd Closes #4894
2019-11-24checksrc.bat: Add a check for vquic and vssh directoriesJay Satiro
Ref: https://github.com/curl/curl/pull/4607
2019-05-11checksrc.bat: Ignore snprintf warnings in docs/examplesJay Satiro
.. because we allow snprintf use in docs/examples. Closes https://github.com/curl/curl/pull/3862
2018-08-11projects: Improve Windows perl detection in batch scriptsJay Satiro
- Determine if perl is in the user's PATH by running perl.exe. Prior to this change detection was done by checking the PATH for perl/ but that did not work in all cases (eg git install includes perl but not in perl/ path). Bug: https://github.com/curl/curl/pull/2865 Reported-by: Daniel JeliƄski
2017-03-02checksrc.bat: Ignore curl_config.h.in, curl_config.hJay Satiro
2016-04-03checksrc.bat: Added support for the examplesSteve Holme
2016-04-03checksrc.bat: Re-enabled the tests directory by defaultSteve Holme
Following the recent changes to the source in the tests directory, re-enabled tests for the default scan.
2016-04-03checksrc.bat: Added tests/server directory supportSteve Holme
In addition to commit 83b174b3f0 and following the recent changes.
2016-04-03checksrc.bat: Disable tests by default until warnings are fixedSteve Holme
2016-04-03checksrc.bat: Added support for the tests directorySteve Holme
2016-03-25checksrc.bat: Added support for checking the new vauth directorySteve Holme
2016-03-23checksrc.bat: Updated the help to be consistent with generate.batSteve Holme
Follow up to commit a8c7f0fcbf prior to release.
2016-03-13checksrc.bat: Added the ability to scan src and lib source independentlySteve Holme
2016-03-06build-openssl/checksrc.bat: Fixed prepend vs append of Perl pathSteve Holme
Fixed inconsistency from commit 1eae114065 and 0ad6c72227 of the order in which Perl was added to the PATH.
2016-03-05checksrc.bat: Fixed cannot find perl if installed but not in pathSteve Holme
2016-02-03URLs: change all http:// URLs to https://Daniel Stenberg
2015-08-08checksrc.bat: Fixed error when missing *.c and *.h filesSteve Holme
File Not Found
2015-08-08checksrc.bat: Fixed incorrect 'lib\vtls' path check in commit 333c36b276Steve Holme
2015-08-08checksrc.bat: Fixed error when [directory] isn't a curl source directorySteve Holme
The system cannot find the file specified.
2015-08-08checksrc.bat: Added check for unknown argumentsSteve Holme
2015-08-08scripts: Added missing commentsSteve Holme
2015-08-08scripts: Allow -help to be specified in any argumentSteve Holme
Allow the -help command line argument to be specified in any argument and not just as the first.
2015-04-05checksrc.bat: quotes to support an SRC_DIR with spacesViktor Szakats
2015-04-03checksrc.bat: Check lib\vtls sourceJay Satiro
2015-03-30checksrc: Windows-specific input fixesJay Satiro
lib/config-win32ce.h - Fix whitespace for checksrc compliance. lib/checksrc.pl - Remove trailing carriage returns from input. projects/checksrc.bat - Ignore tool_hugehelp.c.
2015-01-16checksrc.bat: Better detection of Perl installationSteve Holme
2014-12-28checksrc.bat: Fixed a problem opening files with spaces in the filenameSteve Holme
2014-09-13build: Added batch wrapper to checksrc.plSteve Holme