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/download-from-binary-cache.pl.in | |
parent | b72e93bca8fc045b37b1e863c423cf0e91e8c479 (diff) |
Shut up "Wide character" warnings in Perl scripts
Diffstat (limited to 'scripts/download-from-binary-cache.pl.in')
-rw-r--r-- | scripts/download-from-binary-cache.pl.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/download-from-binary-cache.pl.in b/scripts/download-from-binary-cache.pl.in index e09b051a4aa6..cdce8eb74a41 100644 --- a/scripts/download-from-binary-cache.pl.in +++ b/scripts/download-from-binary-cache.pl.in @@ -1,5 +1,6 @@ #! @perl@ -w @perlFlags@ +use utf8; use DBI; use DBD::SQLite; use File::Basename; @@ -12,6 +13,7 @@ use WWW::Curl::Easy; use WWW::Curl::Multi; use strict; +binmode STDERR, ":encoding(utf8)"; Nix::Config::readConfig; |