Skip to content

Commit

Permalink
debug in the cloud pt 2, yay
Browse files Browse the repository at this point in the history
  • Loading branch information
justdave committed Aug 31, 2023
1 parent 824b20f commit e2c7f26
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/makedocs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ sub make_pod {
$converter->contents_page_end("</body></html>");
if (exists($::ENV{'READTHEDOCS'})) {
$converter->add_css('./style.css');
system('pwd');
copy('../style.css', 'html/style.css') or die "Copy failed: $!";
} else {
$converter->add_css('./../../../../style.css');
}
Expand All @@ -96,6 +94,9 @@ sub make_pod {
make_path('html/integrating/api');
$converter->batch_convert(['../../'], 'html/integrating/api');

if (exists($::ENV{'READTHEDOCS'})) {
copy('../style.css', 'html/style.css') or die "Copy failed: $!";
}
print "\n";
}

Expand Down

0 comments on commit e2c7f26

Please sign in to comment.