There was an error while loading. Please reload this page.
1 parent 3c07cc6 commit 916d3ffCopy full SHA for 916d3ff
1 file changed
cefpython/cef3/mac/installer/make-setup.py
@@ -47,9 +47,9 @@ def create_fat_binaries(b32, b64, bfat):
47
if os.path.exists(bfat):
48
shutil.rmtree(bfat)
49
os.mkdir(bfat)
50
- res = os.system("cp -rf {}/* {}/".format(b32, bfat))
+ res = os.system("cp -rf {}/* {}/".format(b64, bfat))
51
assert res == 0
52
- files = os.listdir(b64)
+ files = os.listdir(b32)
53
for fbase in files:
54
if not (fbase.endswith(".dylib") or fbase.endswith(".so")
55
or fbase.endswith("subprocess")):
0 commit comments