Skip to content

Commit 1e39b37

Browse files
authored
Merge pull request #616 from Groctel/manimcm-to-manimce
Changed all references to manimcm to manimce
2 parents e67a655 + 89b7060 commit 1e39b37

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

manim/config/config_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -494,15 +494,15 @@ def _init_dirs(config):
494494
def _from_command_line():
495495
"""Determine if manim was called from the command line."""
496496
# Manim can be called from the command line in three different
497-
# ways. The first two involve using the manim or manimcm commands.
497+
# ways. The first two involve using the manim or manimce commands.
498498
# Note that some Windows CLIs replace those commands with the path
499499
# to their executables, so we must check for this as well
500500
prog = os.path.split(sys.argv[0])[-1]
501-
from_cli_command = prog in ["manim", "manim.exe", "manimcm", "manimcm.exe"]
501+
from_cli_command = prog in ["manim", "manim.exe", "manimce", "manimce.exe"]
502502

503503
# The third way involves using `python -m manim ...`. In this
504504
# case, the CLI arguments passed to manim do not include 'manim',
505-
# 'manimcm', or even 'python'. However, the -m flag will always
505+
# 'manimce', or even 'python'. However, the -m flag will always
506506
# be the first argument.
507507
from_python_m = sys.argv[0] == "-m"
508508

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ markers = "slow: Mark the test as slow. Can be skipped with --skip_slow"
6060
[tool.poetry.plugins]
6161
[tool.poetry.plugins."console_scripts"]
6262
"manim" = "manim.__main__:main"
63-
"manimcm" = "manim.__main__:main"
63+
"manimce" = "manim.__main__:main"
6464

6565
[build-system]
6666
requires = ["poetry>=0.12"]

0 commit comments

Comments
 (0)