Skip to content

Commit ea74f79

Browse files
777geniusclaude
andcommitted
fix: remove Unicode symbols from PyInstaller spec files
Replace ✓ and ⚠ with [OK] and [WARNING] to fix Windows encoding error. Windows cp1252 codec cannot encode these Unicode characters. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 1e48bbc commit ea74f79

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packaging/launcher-linux.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ FLUTTER_APP = os.path.join(ROOT, 'frontend_flutter', 'build', 'linux', 'x64', 'r
1616
if os.path.exists(FLUTTER_APP):
1717
# Bundle entire Flutter bundle folder
1818
datas.append((FLUTTER_APP, 'flutter_app'))
19-
print(f" Including Flutter app: {FLUTTER_APP}")
19+
print(f"[OK] Including Flutter app: {FLUTTER_APP}")
2020
else:
21-
print(f" Flutter app not found at: {FLUTTER_APP}")
21+
print(f"[WARNING] Flutter app not found at: {FLUTTER_APP}")
2222
print(" You need to build Flutter first: cd frontend_flutter && flutter build linux --release")
2323

2424
# Bundle version file

packaging/launcher-macos.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ FLUTTER_APP = os.path.join(ROOT, 'frontend_flutter', 'build', 'macos', 'Build',
1717
if os.path.exists(FLUTTER_APP):
1818
# Bundle entire Flutter .app into Resources
1919
datas.append((FLUTTER_APP, 'flutter_app/frontend_flutter.app'))
20-
print(f" Including Flutter app: {FLUTTER_APP}")
20+
print(f"[OK] Including Flutter app: {FLUTTER_APP}")
2121
else:
22-
print(f" Flutter app not found at: {FLUTTER_APP}")
22+
print(f"[WARNING] Flutter app not found at: {FLUTTER_APP}")
2323
print(" You need to build Flutter first: cd frontend_flutter && flutter build macos --release")
2424

2525
# Bundle macOS sound assets

packaging/launcher-windows.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ FLUTTER_APP = os.path.join(ROOT, 'frontend_flutter', 'build', 'windows', 'runner
1616
if os.path.exists(FLUTTER_APP):
1717
# Bundle entire Flutter Release folder
1818
datas.append((FLUTTER_APP, 'flutter_app'))
19-
print(f" Including Flutter app: {FLUTTER_APP}")
19+
print(f"[OK] Including Flutter app: {FLUTTER_APP}")
2020
else:
21-
print(f" Flutter app not found at: {FLUTTER_APP}")
21+
print(f"[WARNING] Flutter app not found at: {FLUTTER_APP}")
2222
print(" You need to build Flutter first: cd frontend_flutter && flutter build windows --release")
2323

2424
# Bundle version file

0 commit comments

Comments
 (0)