You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-15 01:04:37 +02:00
Move configuration definition to src/build/config/config.yaml.
Moving to YAML allows the configuration data to be read by C programs. Also go back to using YAML::XS since it is the only implementation that has proper boolean support.
This commit is contained in:
@ -27,8 +27,8 @@ sub codeCountScan
|
||||
my $strBasePath = shift;
|
||||
|
||||
# Load YAML
|
||||
require YAML::Any;
|
||||
YAML::Any->import(qw(Load Dump));
|
||||
require YAML::XS;
|
||||
YAML::XS->import(qw(Load Dump));
|
||||
|
||||
my $hCodeCount = {};
|
||||
|
||||
|
Reference in New Issue
Block a user