Skip to content

Commit

Permalink
dbhelper correctly parses ${confid}.
Browse files Browse the repository at this point in the history
  • Loading branch information
kohler committed Jan 29, 2024
1 parent 9b5bed0 commit 97aaa29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dbhelper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ sub fixshell ($) {
if ($Opt{"multiconference"} && $Confname ne "") {
foreach my $i ("dbName", "dbUser", "dbPassword",
"sessionName", "downloadPrefix", "conferenceSite") {
$Opt{$i} =~ s,\*|\*\{conf(?:id|name)\}|\$conf(?:id|name)\b,$Confname,g if exists($Opt{$i});
$Opt{$i} =~ s,\*|\$\{conf(?:id|name)\}|\$conf(?:id|name)\b,$Confname,g if exists($Opt{$i});
}
}
Expand Down

0 comments on commit 97aaa29

Please sign in to comment.