FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codex/scripts/just-shell.py at main · BuloZB/codex · GitHub
BuloZB
/
codex
Public
forked from
openai/codex
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codex
/
scripts
/
just-shell.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
72 lines (56 loc) · 1.98 KB
Breadcrumbs
codex
/
scripts
/
just-shell.py
Copy path
File metadata and controls
72 lines (56 loc) · 1.98 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python3
"""Cross-platform shell launcher for `just` recipes.
This keeps recipe bodies as normal shell snippets while giving the justfile one
portable placeholder, `{args}`, for forwarding variadic recipe arguments.
"""
from
__future__
import
annotations
import
os
import
shutil
import
subprocess
import
sys
ARGS_TOKEN
=
"{args}"
STDERR_NULL_TOKEN
=
"{stderr-null}"
POWERSHELL_ARGS
=
"@($args | Select-Object -Skip 1)"
POWERSHELL_STDERR_NULL
=
"2>$null; exit $LASTEXITCODE"
SH_ARGS
=
'"$@"'
SH_STDERR_NULL
=
"2>/dev/null"
def
main
()
->
int
:
if
len
(
sys
.
argv
)
<
2
:
print
(
"just shell adapter expected a recipe command."
,
file
=
sys
.
stderr
)
return
1
command
=
sys
.
argv
[
1
]
recipe_name
=
sys
.
argv
[
2
]
if
len
(
sys
.
argv
)
>
2
else
""
recipe_args
=
sys
.
argv
[
3
:]
if
os
.
name
==
"nt"
:
return
run_powershell
(
command
,
recipe_name
,
recipe_args
)
else
:
return
run_sh
(
command
,
recipe_name
,
recipe_args
)
def
run_sh
(
command
:
str
,
recipe_name
:
str
,
recipe_args
:
list
[
str
])
->
int
:
command
=
command
.
replace
(
ARGS_TOKEN
,
SH_ARGS
)
command
=
command
.
replace
(
STDERR_NULL_TOKEN
,
SH_STDERR_NULL
)
os
.
execvp
(
"sh"
, [
"sh"
,
"-cu"
,
command
,
recipe_name
,
*
recipe_args
])
def
run_powershell
(
command
:
str
,
recipe_name
:
str
,
recipe_args
:
list
[
str
])
->
int
:
pwsh
=
shutil
.
which
(
"pwsh.exe"
)
or
shutil
.
which
(
"pwsh"
)
if
pwsh
is
None
:
print
(
"PowerShell ('pwsh') is required for Windows just recipes. "
"Run 'just install' to install it."
,
file
=
sys
.
stderr
,
)
return
1
command
=
command
.
replace
(
ARGS_TOKEN
,
POWERSHELL_ARGS
)
command
=
command
.
replace
(
STDERR_NULL_TOKEN
,
POWERSHELL_STDERR_NULL
)
return
subprocess
.
run
(
[
pwsh
,
"-NoLogo"
,
"-NoProfile"
,
"-CommandWithArgs"
,
command
,
recipe_name
,
*
recipe_args
,
],
check
=
False
,
).
returncode
if
__name__
==
"__main__"
:
raise
SystemExit
(
main
())
Back
|
FazBrowse Home
|
New Git URL