Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Xynoclafe authored and anthony-c-martin committed Jan 24, 2025
1 parent 4b84b57 commit a3f3dfa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion generator/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ export function executeCmd(cwd: string, cmd: string, args: string[]) : Promise<n
const child = spawn(cmd, args, {
cwd: cwd,
windowsHide: true,
env: { ...process.env, 'DOTNET_SYSTEM_GLOBALIZATION_INVARIANT': 1},
env: {
...process.env,
// needed to workaround dotnet globalization issues in autorest .NET plugins
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: '1',
},
});

child.stdout.on('data', data => process.stdout.write(colors.grey(data.toString())));
Expand Down

0 comments on commit a3f3dfa

Please sign in to comment.