Skip to content

Commit bb15fcf

Browse files
committed
fix: insert_dylib hang if interactive prompt like "not enough space"
SignTools/SignTools#555
1 parent e89592e commit bb15fcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def install_name_change(binary: Path, old: Path, new: Path):
274274

275275

276276
def insert_dylib(binary: Path, path: Path):
277-
return run_process("./insert_dylib", "--inplace", "--no-strip-codesig", str(path), str(binary))
277+
return run_process("./insert_dylib", "--inplace", "--no-strip-codesig", "--all-yes", str(path), str(binary))
278278

279279

280280
def get_binary_map(dir: Path):

0 commit comments

Comments
 (0)