Bug
- Applied patch from Dirk to fix a problem on Cygwin with a $PATH that contain spaces. Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
committed by
Paul Beckingham
parent
e7428663d2
commit
93337f499e
@@ -38,7 +38,7 @@ if ($@)
|
||||
}
|
||||
|
||||
# Use the taskwarrior 2.0+ export command to filter and return JSON
|
||||
my $command = join (' ', ("env PATH=$ENV{PATH} task export", @ARGV));
|
||||
my $command = join (' ', ("env PATH='$ENV{PATH}' task export", @ARGV));
|
||||
if ($command =~ /No matches/)
|
||||
{
|
||||
printf STDERR $command;
|
||||
|
||||
Reference in New Issue
Block a user