1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-15 01:04:37 +02:00

Add host-repo-path variable internal replacement.

This variable needs to be replaced right before being used without being added to the cache since the host repo path will vary from system to system.

This is frankly a bit of a hack to get the documentation to build in the Debian packages for the upcoming release.  We'll need to come up with something more flexible going forward.
This commit is contained in:
David Steele
2019-06-25 07:58:38 -04:00
parent 5cbe2dee85
commit 51fcaee43e
3 changed files with 26 additions and 12 deletions

View File

@ -1036,6 +1036,7 @@ sub processText
{
$strBuffer =~ s/\&mdash\;/--/g;
$strBuffer =~ s/\&lt\;/\</g;
$strBuffer =~ s/\&ge\;/\>\=/g;
}
$strBuffer = $self->variableReplace($strBuffer);