Skip to content

Commit 9bcf825

Browse files
committed
fix: use bash shell for cross-platform PyInstaller (v0.2.13)
1 parent 94a3bd7 commit 9bcf825

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,10 @@ jobs:
3535
pip install -e packages/core
3636
3737
- name: Build binary
38+
shell: bash
3839
run: |
3940
cd packages/core
40-
pyinstaller --onefile --name thoth-core \
41-
--collect-data kerykeion \
42-
thoth_core/cli.py
41+
pyinstaller --onefile --name thoth-core --collect-data kerykeion thoth_core/cli.py
4342
4443
- name: Rename and compress binary (Unix)
4544
if: matrix.os != 'windows-latest'

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thoth-cli",
3-
"version": "0.2.12",
3+
"version": "0.2.13",
44
"description": "𓅝 Astrological calculations from the command line. Swiss Ephemeris precision. Built for humans and agents.",
55
"author": "AKLO <aklo@aklolabs.com>",
66
"license": "MIT",

packages/cli/scripts/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import https from 'https';
1414

1515
const __dirname = dirname(fileURLToPath(import.meta.url));
1616

17-
const VERSION = '0.2.12';
17+
const VERSION = '0.2.13';
1818
const REPO = 'aklo360/thoth-cli';
1919

2020
// Use jsDelivr CDN for faster downloads (mirrors GitHub releases)

packages/cli/src/bin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ EPHEMERIS & MOON
8080
REFERENCE
8181
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
8282
thoth key # full symbol reference`)
83-
.version('0.2.12');
83+
.version('0.2.13');
8484

8585
// Chart command
8686
program
@@ -886,7 +886,7 @@ program
886886

887887
// Banner
888888
console.log(chalk.dim(''));
889-
console.log(chalk.yellow(' 𓅝') + chalk.dim(' thoth-cli v0.2.12'));
889+
console.log(chalk.yellow(' 𓅝') + chalk.dim(' thoth-cli v0.2.13'));
890890
console.log(chalk.dim(''));
891891

892892
program.parse();

0 commit comments

Comments
 (0)