Skip to content

Commit

Permalink
Fix meson warning for run_command (#762)
Browse files Browse the repository at this point in the history
  • Loading branch information
turbobastii authored May 10, 2023
1 parent be791f3 commit b0e81b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ util_tests = executable(
test('Utils Tests', util_tests, suite: 'core', is_parallel: false)

# We need these three locales to run the tests
locales = run_command('locale', '-a').stdout().split('\n')
locales = run_command('locale', '-a', check: true).stdout().split('\n')
if locales.contains ('en_GB.utf8') and locales.contains ('en_US.utf8') and locales.contains ('ar_AE.utf8')
eventstore_tests = executable(
tests_name + '-eventstore',
Expand Down

0 comments on commit b0e81b8

Please sign in to comment.