bin/briar_xtc.rb in briar-2.0.3 vs bin/briar_xtc.rb in briar-2.0.4

- old
+ new

@@ -18,10 +18,11 @@ :test_cloud_gem_dev => ENV["XTC_TEST_CLOUD_GEM_DEV"] == "1", :async_submit => ENV['XTC_WAIT_FOR_RESULTS'] == '0', :series => ENV['XTC_SERIES'], :user => ENV['XTC_USER'], :dsym => ENV['XTC_DSYM'], + :locale => ENV["XTC_LOCALE"], :priority => ENV['XTC_HIGH_PRIORITY'] == '1', :test_params => ENV["XTC_TEST_PARAMS"], :rebuild => true, # Unused. :briar_dev => ENV['XTC_BRIAR_GEM_DEV'] == '1' @@ -172,9 +173,14 @@ end if opts[:series] args << '--series' args << opts[:series] + end + + if opts[:locale] + args << '--locale' + args << opts[:locale] end if opts[:dsym] args << '--dsym-file' args << File.expand_path(opts[:dsym])