We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e74f074 commit 585a001Copy full SHA for 585a001
1 file changed
scripts/install.py
@@ -16,11 +16,11 @@ def run_cmd(cmd):
16
17
def install(xmake_config_flags=""):
18
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")
+ run_cmd(f"xmake f -y {xmake_config_flags} -cv")
+ run_cmd("xmake -y")
+ run_cmd("xmake install -y")
+ run_cmd("xmake build -y infiniop-test")
+ run_cmd("xmake install -y infiniop-test")
24
25
26
if __name__ == "__main__":
0 commit comments