Skip to content

Commit 2351e2f

Browse files
committed
small fix
1 parent 595454a commit 2351e2f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
echo "Warning: Version generation failed or returned invalid version '$VERSION', using fallback: 2026.1.2"
5151
VERSION="2026.1.2"
5252
fi
53-
fi
53+
5454
echo "version=$VERSION" >> $GITHUB_OUTPUT
5555
5656
# Sanitize version for Docker (Docker tags cannot contain '+', replace with '-')

switchcraft.spec

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,12 @@ if sys.platform != 'darwin':
109109

110110
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
111111

112-
exe_args = [pyz, a.scripts, a.binaries, a.zipfiles, a.datas]
112+
exe_args = [pyz, a.scripts]
113113
if splash:
114-
exe_args.extend([splash, splash.binaries])
115-
exe_args.append([])
114+
exe_args.append(splash)
115+
exe_args.append(splash.binaries)
116+
117+
exe_args.extend([a.binaries, a.zipfiles, a.datas])
116118

117119
exe = EXE(
118120
*exe_args,

0 commit comments

Comments
 (0)