Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gap/Magic.gi
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,11 @@ function( is_worksheet, pkgname, pkginfo, pkgdir, opt )
# Make sure all of the files exist, making the file names absolute if
# necessary
for i in [ 1 .. Length( autodoc.files ) ] do
if IsExistingFile( autodoc.files[ i ] ) then continue; fi;
if IsExistingFile( Filename( pkgdir, autodoc.files[ i ] ) ) then
autodoc.files[ i ] := Filename( pkgdir, autodoc.files[ i ] );
continue;
fi;
if IsExistingFile( autodoc.files[ i ] ) then continue; fi;
Error( autodoc.files[ i ], " does not specify an existing file either as an absolute path or relative to the package directory" );
od;

Expand Down