From f3044f9c552b7b40ee22cf52f369d3e67cbdf14d Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 25 Jan 2016 16:31:33 +0200 Subject: Encode environment variables in UTF-8 This is an arbitary choice, and wrong, if the locale has something else. I'll fix that some other day. --- yarn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yarn') diff --git a/yarn b/yarn index cc41177..f1cabb3 100755 --- a/yarn +++ b/yarn @@ -451,7 +451,7 @@ class YarnRunner(cliapp.Application): env['SRCDIR'] = os.getcwd() env['HOME'] = self.homedir(datadir) for i, match in enumerate(m.groups('')): - env['MATCH_%d' % (i+1)] = match + env['MATCH_%d' % (i+1)] = match.encode('utf-8') if self.settings['cd-datadir']: cwd = datadir -- cgit v1.2.1