File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 33import sys
44
55def run_cmd (cmd ):
6- print (f"➡️ Running: { cmd } " )
6+ print (f"Running: { cmd } " )
77 result = subprocess .run (cmd , shell = True )
88 if result .returncode != 0 :
9- print (f"❌ Command failed: { cmd } " , file = sys .stderr )
9+ print (f"Command failed: { cmd } " , file = sys .stderr )
1010 sys .exit (result .returncode )
1111
1212if __name__ == "__main__" :
@@ -16,11 +16,11 @@ def run_cmd(cmd):
1616 args = parser .parse_args ()
1717
1818 if args .clean :
19- response = input ("⚠️ Warning: Executing `git clean -fdx` [Y/N]: " )
19+ response = input ("Warning: Executing `git clean -fdx` [Y/N]: " )
2020 if response .lower () in ("y" , "yes" ):
2121 run_cmd ("git clean -fdx" )
2222 else :
23- print ("ℹ️ Skipping clean step." )
23+ print ("Skipping clean step." )
2424
2525 run_cmd ("python scripts/build/add_dummy_submodules.py" )
2626 run_cmd ("pip install -e . --verbose" )
Original file line number Diff line number Diff line change 44import sys
55
66def run_cmd (cmd ):
7- print (f"➡️ Running: { cmd } " )
7+ print (f"Running: { cmd } " )
88 result = subprocess .run (cmd , shell = True )
99 if result .returncode != 0 :
10- print (f"❌ Command failed: { cmd } " , file = sys .stderr )
10+ print (f"Command failed: { cmd } " , file = sys .stderr )
1111 sys .exit (result .returncode )
1212
1313if __name__ == "__main__" :
@@ -16,11 +16,11 @@ def run_cmd(cmd):
1616 args = parser .parse_args ()
1717
1818 if args .clean :
19- response = input ("⚠️ Warning: Executing `git clean -fdx` [Y/N]: " )
19+ response = input ("Warning: Executing `git clean -fdx` [Y/N]: " )
2020 if response .lower () in ("y" , "yes" ):
2121 run_cmd ("git clean -fdx" )
2222 else :
23- print ("ℹ️ Skipping clean step." )
23+ print ("Skipping clean step." )
2424
2525 run_cmd ("python scripts/build/add_dummy_submodules.py" )
2626 run_cmd ("python setup.py build_ext --inplace" )
You can’t perform that action at this time.
0 commit comments