diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-01-15T16·56+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-01-15T16·56+0100 |
commit | f6716e95bb5ea6fc267f228880b46e9509fc4801 (patch) | |
tree | 1ac98584fc5da732a1745e95ca81ae07f04b8edc /scripts | |
parent | c2a8b5c42d37e129a893ee42479dbf395fdf7d4c (diff) |
Shut up "Wide character in print" warning in copy-from-other-stores.pl
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/copy-from-other-stores.pl.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/copy-from-other-stores.pl.in b/scripts/copy-from-other-stores.pl.in index cf36bae9e803..8ce5a9d4049f 100755 --- a/scripts/copy-from-other-stores.pl.in +++ b/scripts/copy-from-other-stores.pl.in @@ -9,6 +9,7 @@ my $binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@"; STDOUT->autoflush(1); +binmode STDERR, ":encoding(utf8)"; my @remoteStoresAll = split ':', ($ENV{"NIX_OTHER_STORES"} or ""); |