Skip to content

Commit 0c54ce5

Browse files
committed
simplify command path resolution
1 parent b8619ef commit 0c54ce5

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

django_typer/management/commands/shellcompletion.py

+13-14
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import inspect
2020
import io
2121
import os
22-
import subprocess
22+
import shutil
2323
import sys
2424
import typing as t
2525
from pathlib import Path
@@ -112,21 +112,17 @@ def manage_script(self) -> t.Union[str, Path]:
112112
a manage.py script being invoked directly as a script. Completion should work in this case
113113
as well, but it does complicate the installation for some shell's so we must first figure
114114
out which mode we are in.
115+
116+
If this property returns a string the command is available as a command on the path. If it
117+
returns a path the command is available as a script but is not generally available on the
118+
path.
115119
"""
116120
cmd_pth = Path(sys.argv[0])
117-
if cmd_pth.exists():
118-
# manage.py might happen to be on the current path, but it might also be installed as
119-
# a command - we test it here by invoking it to be sure
120-
try:
121-
subprocess.run(
122-
[cmd_pth.name, "--help"],
123-
check=True,
124-
stdout=subprocess.PIPE,
125-
stderr=subprocess.PIPE,
126-
)
127-
except (subprocess.CalledProcessError, FileNotFoundError):
128-
return cmd_pth.absolute()
129-
return cmd_pth.name
121+
# manage.py might happen to be on the current path, but it might also be installed as
122+
# a command - we test it here using which to be sure
123+
if shutil.which(cmd_pth.name):
124+
return cmd_pth.name
125+
return cmd_pth.absolute()
130126

131127
@cached_property
132128
def manage_script_name(self) -> str:
@@ -610,3 +606,6 @@ def noop(self):
610606
has no use other than to avoid any potential attribute access errors when we spoof
611607
completion logic
612608
"""
609+
import ipdb
610+
611+
ipdb.set_trace()

django_typer/tests/django_manage.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!{{shebang}}
2+
# -*- coding: utf-8 -*-
23
import os
34
import sys
45

0 commit comments

Comments
 (0)