From 5066944b7673e5e25a6eba0186ec1b4e9c82ac49 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Wed, 28 Oct 2020 02:41:17 -0700 Subject: [PATCH] [buck] enable buckd Summary: Not sure there's a good reason for this anymore. Reviewed By: ezgicicek Differential Revision: D24563704 fbshipit-source-id: 84f113554 --- infer/src/integration/Driver.ml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/infer/src/integration/Driver.ml b/infer/src/integration/Driver.ml index fdb4960dc..3f6a8c7dc 100644 --- a/infer/src/integration/Driver.ml +++ b/infer/src/integration/Driver.ml @@ -432,10 +432,7 @@ let mode_from_command_line = let run_prologue mode = if CLOpt.is_originator then L.environment_info "%a@\n" Config.pp_version () ; if Config.debug_mode then L.environment_info "Driver mode:@\n%a@." pp_mode mode ; - if CLOpt.is_originator then ( - if Config.dump_duplicate_symbols then reset_duplicates_file () ; - (* disable the Buck daemon as changes in the Buck or infer config may be missed otherwise *) - Unix.putenv ~key:"NO_BUCKD" ~data:"1" ) ; + if CLOpt.is_originator && Config.dump_duplicate_symbols then reset_duplicates_file () ; ()