Add -X $.

This commit is contained in:
Bradley M. Kuhn 2012-11-23 08:35:45 -05:00
parent f0ee16a373
commit 7b0e4c4806

View file

@ -74,7 +74,7 @@ my %reportFields =
);
foreach my $item (keys %reportFields) {
my(@fullCommand) = ($LEDGER_BIN, @mainLedgerOptions,
'-V', '-S', 'T', '-s', '-d', 'T', @{$reportFields{$item}{args}});
'-V', '-X', '$', '-S', 'T', '-s', '-d', 'T', @{$reportFields{$item}{args}});
open(FILE, "-|", @fullCommand)
or die "unable to run command ledger command: @fullCommand: $!";