Skip to content

Commit 4065426

Browse files
committed
Fix linux build script
1 parent ca578e5 commit 4065426

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [[ "$rel_t" = "--debug" || "$rel_t" = "--release" ]]; then
2323

2424
if command -v python3.14 &> /dev/null; then
2525
python3.14 -m PyInstaller --noconfirm --clean build.spec
26-
if command -v python3.13 &> /dev/null; then
26+
elif command -v python3.13 &> /dev/null; then
2727
python3.13 -m PyInstaller --noconfirm --clean build.spec
2828
elif command -v python3.12 &> /dev/null; then
2929
python3.12 -m PyInstaller --noconfirm --clean build.spec

0 commit comments

Comments
 (0)