Skip to content

Commit 9cf3b5a

Browse files
committed
Remove special character
1 parent 5319e34 commit 9cf3b5a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

scripts/build/develop.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
import sys
44

55
def 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

1212
if __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")

scripts/build/install.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
import sys
55

66
def 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

1313
if __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")

0 commit comments

Comments
 (0)