Skip to content

Commit

Permalink
- The output of a backtick is no longer UTF-8 decoded.
Browse files Browse the repository at this point in the history
  • Loading branch information
trizen committed Sep 10, 2015
1 parent 980a2d2 commit f369175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Sidef/Types/Glob/Backtick.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package Sidef::Types::Glob::Backtick {

sub run {
my ($self) = @_;
Sidef::Types::String::String->new(scalar `$$self`)->decode_utf8;
Sidef::Types::String::String->new(scalar `$$self`);
}

*execute = \&run;
Expand Down

0 comments on commit f369175

Please sign in to comment.