Skip to content

Commit

Permalink
fix: path for error links
Browse files Browse the repository at this point in the history
  • Loading branch information
Екатерина Московская committed Mar 25, 2024
1 parent 78d1218 commit 94a4190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion foliant/preprocessors/includes.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ def _process_include(
if self.options['allow_failure']:
self.logger.error(f'The url or repo_url link is not correct, file not found: {included_file_path}')

path_error_link = Path(self._cache_dir_path/'_error_link').resolve()
path_error_link = Path(self.project_path/'.error_link').resolve()

if not Path(path_error_link).exists():
Path(path_error_link).mkdir()
Expand Down

0 comments on commit 94a4190

Please sign in to comment.