FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
setup-python/__tests__/check-python-path.sh at main · SecureLayer/setup-python · GitHub
SecureLayer
/
setup-python
Public
forked from
actions/setup-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
4
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
setup-python
/
__tests__
/
check-python-path.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
14 lines (12 loc) · 461 Bytes
Breadcrumbs
setup-python
/
__tests__
/
check-python-path.sh
Copy path
File metadata and controls
executable file
·
14 lines (12 loc) · 461 Bytes
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
#!
/bin/bash
set
-euo pipefail
PYTHON_PATH=
"
$1
"
PATH_EXECUTABLE=
$(
python -c
'
import sys; print(sys.executable)
'
)
PYTHON_PATH_EXECUTABLE=
$(
"
${PYTHON_PATH}
"
-c
'
import sys; print(sys.executable)
'
)
if
[
"
${PATH_EXECUTABLE}
"
!=
"
${PYTHON_PATH_EXECUTABLE}
"
]
;
then
echo
"
Executable mismatch.
"
echo
"
python in PATH is:
${PATH_EXECUTABLE}
"
echo
"
python-path (
${PYTHON_PATH}
) is:
${PYTHON_PATH_EXECUTABLE}
"
exit
1
fi
echo
"
python-path:
${PYTHON_PATH}
"
Back
|
FazBrowse Home
|
New Git URL