diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-29T15·48+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-29T15·48+0200 |
commit | 27a01d92c2be3e6c1be23f96d24c3d3358489a87 (patch) | |
tree | 316819a63ac571802b79b7d1e2620c4f3dc6f5f8 /scripts/nix-channel.in | |
parent | b72e93bca8fc045b37b1e863c423cf0e91e8c479 (diff) |
Shut up "Wide character" warnings in Perl scripts
Diffstat (limited to 'scripts/nix-channel.in')
-rwxr-xr-x | scripts/nix-channel.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/nix-channel.in b/scripts/nix-channel.in index 407f27490410..e45b913382a7 100755 --- a/scripts/nix-channel.in +++ b/scripts/nix-channel.in @@ -1,11 +1,14 @@ #! @perl@ -w @perlFlags@ +use utf8; use strict; use File::Basename; use File::Path qw(mkpath); use Nix::Config; use Nix::Manifest; +binmode STDERR, ":encoding(utf8)"; + Nix::Config::readConfig; my $manifestDir = $Nix::Config::manifestDir; |