Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preserve
taint/
subdirectory structure when building pyre-check
w…
…heel Summary: Our open source builds have been broken for a long time, because the taint.config in the `taint` data folder shipped with our wheel has just been empty. It seems like the root cause was that all of our taint from various folders such as `taint/core_privacy_security`, `taint/common` was being copied into the wheel under `pyre_check/taint` rather than keeping the subdirectory structure, meaning that the empty taint.config under `common/` is being written to the `pyre_check/taint` folder in the wheel, overwriting the `core_privacy_security/taint.config` file at times, because files from both subfolders are being copied to the same destination location in the wheel. Since we need to release a new open source package due to recent GitHub issues asking about features we have long implemented (but have not pushed out), let's fix the script so we can make non-broken builds again. Reviewed By: 0xedward Differential Revision: D33247107 fbshipit-source-id: 67288937d4e640092c9b650af9f77184a08d5f27
- Loading branch information