Skip to content

Commit 2c7262f

Browse files
committed
Fixed bad value
1 parent 2d10ba9 commit 2c7262f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aws.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ async function startEc2Instance(label, githubRegistrationToken) {
1717
'sudo echo "export RUNNER_ALLOW_RUNASROOT=1" >> /etc/profile.d/env.sh',
1818
'export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1',
1919
'sudo echo "export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1" >> /etc/profile.d/env.sh',
20-
'export DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY=true',
21-
'sudo echo "export DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY=true" >> /etc/profile.d/env.sh',
20+
'export DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY=false',
21+
'sudo echo "export DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY=false" >> /etc/profile.d/env.sh',
2222
`./config.sh --unattended --url https://github.com/${config.githubContext.owner}/${config.githubContext.repo} --token ${githubRegistrationToken} --labels ${label}`,
2323
'./run.sh',
2424
];

0 commit comments

Comments
 (0)