Skip to content

Commit b3a6afe

Browse files
committed
debug
1 parent e7daacb commit b3a6afe

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.github/workflows/build-linux-installer-deb.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,9 @@ jobs:
9797
with:
9898
python-version: "3.12"
9999

100-
- name: Show available python binaries
100+
- name: Test raw version command
101101
run: |
102-
which python || echo "python not found"
103-
which python3 || echo "python3 not found"
104-
which python3.12 || echo "python3.12 not found"
105-
ls -l $(dirname $(which python3)) | grep python
102+
python3.12 --version
106103
107104
- name: Setup Node per .nvmrc in GUI
108105
uses: actions/setup-node@v5

.github/workflows/build-linux-installer-rpm.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,9 @@ jobs:
8787
with:
8888
python-version: "3.12"
8989

90-
- name: Show available python binaries
90+
- name: Test raw version command
9191
run: |
92-
which python || echo "python not found"
93-
which python3 || echo "python3 not found"
94-
which python3.12 || echo "python3.12 not found"
95-
ls -l $(dirname $(which python3)) | grep python
92+
python3.12 --version
9693
9794
- name: Setup Node per .nvmrc in GUI
9895
uses: actions/setup-node@v5

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ if [ "$INSTALL_PYTHON_VERSION" = "" ]; then
125125
else
126126
echo "Python $INSTALL_PYTHON_VERSION is requested"
127127
INSTALL_PYTHON_PATH=python${INSTALL_PYTHON_VERSION}
128-
echo $($INSTALL_PYTHON_PATH --version)"hello"
128+
echo $($INSTALL_PYTHON_PATH --version 2>&1)"hello"
129129
PY3_VER=$($INSTALL_PYTHON_PATH --version | cut -d ' ' -f2)
130130
PYTHON_MAJOR_VER=$(echo "$PY3_VER" | cut -d'.' -f1)
131131
PYTHON_MINOR_VER=$(echo "$PY3_VER" | cut -d'.' -f2)

0 commit comments

Comments
 (0)