Skip to content

Commit

Permalink
fix the error
Browse files Browse the repository at this point in the history
```
Source file /home/lrineau/CGAL/collect_and_public_testresults/TESTRESULTS/../Summary_Script.js does not exist. at ./create_testresult_page line 898.
```
  • Loading branch information
lrineau committed Sep 25, 2024
1 parent e210184 commit 885c906
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Maintenance/test_handling/create_testresult_page
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use strict;
use Date::Format;
use JSON;
use File::Copy;
use FindBin;

my $server_url="https://cgal.geometryfactory.com/";
my $cgal_members="${server_url}CGAL/Members/";
Expand Down Expand Up @@ -753,7 +754,7 @@ sub create_summary_page {
my @letters = ('r', 'n', 'w', 'o');
my $letters_options = join("\n", map { "<option value=\"$_\">$_</option>" } @letters);
my $package_options = join("\n", map { "<option value=\"$_\">$_</option>" } sort keys %test_directories);
my $summary_script_src = "$testresult_dir/../Summary_Script.js";
my $summary_script_src = $FindBin::RealBin . "/Summary_Script.js";
my $summary_script_dest = "$testresult_dir/$release_name/Summary_Script.js";
my $summary_page_path = "$testresult_dir/summary".substr($release_name,4).".html";
my @platforms_data;
Expand Down

0 comments on commit 885c906

Please sign in to comment.