mirror of https://github.com/digint/btrbk
btrbk: bugfix: set correct parent section when propagating targets
parent
4ffaf430c5
commit
191284cd43
|
@ -1,3 +1,8 @@
|
|||
btrbk-current
|
||||
|
||||
* Bugfix: set correct parent section when propagating targets
|
||||
(close: #85).
|
||||
|
||||
btrbk-0.23.0
|
||||
|
||||
* INCOMPATIBLE CONFIGURATION:
|
||||
|
|
4
btrbk
4
btrbk
|
@ -46,7 +46,7 @@ use Carp qw(confess);
|
|||
use Getopt::Long qw(GetOptions);
|
||||
use Time::Local qw( timelocal timegm timegm_nocheck );
|
||||
|
||||
our $VERSION = "0.23.0";
|
||||
our $VERSION = "0.23.1-dev";
|
||||
our $AUTHOR = 'Axel Burri <axel@tty0.ch>';
|
||||
our $PROJECT_HOME = '<http://digint.ch/btrbk/>';
|
||||
|
||||
|
@ -2454,7 +2454,7 @@ sub _config_propagate_target
|
|||
next;
|
||||
}
|
||||
|
||||
my %copy = ( %$target, PARENT => $cur );
|
||||
my %copy = ( %$target, PARENT => $subsection );
|
||||
# foreach my $key (keys %copy) {
|
||||
# # config keys which are strongly related to target section are
|
||||
# # superseded by their presence in later defined sections.
|
||||
|
|
Loading…
Reference in New Issue