Ignore disable_infer_precompiled_header in OSS BUCK

Summary:
A codemod landed which broke our public CI as it added
disable_infer_precompiled_header which is not known to Buck OSS. This ignores the argument like we do for other internal parameter types.

Changelog: [Internal]

Reviewed By: cortinico

Differential Revision: D41729615

fbshipit-source-id: 30601d793b15cca3164d0513882da94064b47996
This commit is contained in:
Pieter De Baets
2022-12-05 03:01:05 -08:00
committed by Facebook GitHub Bot
parent e509007f57
commit 322a796cba
+1
View File
@@ -401,6 +401,7 @@ def fb_apple_library(*args, **kwargs):
_ = kwargs.pop("plugins", [])
_ = kwargs.pop("complete_nullability", False)
_ = kwargs.pop("plugins_header", "")
_ = kwargs.pop("disable_infer_precompiled_header", False)
native.apple_library(*args, **kwargs)