Skip to content

Commit 585a001

Browse files
committed
add -y in xmake
Signed-off-by: Ceng23333 <441651826@qq.com>
1 parent e74f074 commit 585a001

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

scripts/install.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ def run_cmd(cmd):
1616

1717
def install(xmake_config_flags=""):
1818
set_env_by_config(xmake_config_flags)
19-
run_cmd(f"xmake f {xmake_config_flags} -cv")
20-
run_cmd("xmake")
21-
run_cmd("xmake install")
22-
run_cmd("xmake build infiniop-test")
23-
run_cmd("xmake install infiniop-test")
19+
run_cmd(f"xmake f -y {xmake_config_flags} -cv")
20+
run_cmd("xmake -y")
21+
run_cmd("xmake install -y")
22+
run_cmd("xmake build -y infiniop-test")
23+
run_cmd("xmake install -y infiniop-test")
2424

2525

2626
if __name__ == "__main__":

0 commit comments

Comments
 (0)