windows: fix Windows build for py3 build

Summary:
I forget to add fbclone build rule for the Python 3 build and that's blocking Mercurial release. This diff fixes that.

(Note: this ignores all push blocking failures!)

Reviewed By: DurhamG

Differential Revision: D28541340

fbshipit-source-id: 2c12583b97ccd18e3a4717b63a4680e8a5c3de46
This commit is contained in:
Zeyi (Rice) Fan 2021-05-19 10:04:44 -07:00 committed by Facebook GitHub Bot
parent 12c4a1bbb1
commit 69573f29d2

View File

@ -1768,6 +1768,9 @@ rustextbinaries = [
RustBinary("scm_daemon", manifest="exec/scm_daemon/Cargo.toml"),
]
if havefb and iswindows:
rustextbinaries += [RustBinary("fbclone", manifest="fb/fbclone/Cargo.toml")]
setup(
name="edenscm",