Skip to content
Snippets Groups Projects
Commit e06afaeb authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Yang Tse: With last change logging directory needs to be created sooner.

parent 8c6f654b
No related branches found
No related tags found
No related merge requests found
......@@ -2035,6 +2035,13 @@ $FTP6PORT = $base + 6; # FTP IPv6 port
$TFTPPORT = $base + 7; # TFTP (UDP) port
$TFTP6PORT = $base + 8; # TFTP IPv6 (UDP) port
#######################################################################
# clear and create logging directory:
#
cleardir($LOGDIR);
mkdir($LOGDIR, 0777);
#######################################################################
# Output curl version and host info being tested
#
......@@ -2043,12 +2050,6 @@ if(!$listonly) {
checksystem();
}
#######################################################################
# clear and create logging directory:
#
cleardir($LOGDIR);
mkdir($LOGDIR, 0777);
#######################################################################
# If 'all' tests are requested, find out all test numbers
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment