We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84ad964 commit 37013e5Copy full SHA for 37013e5
2 files changed
.github/workflows/ci.yml
@@ -49,7 +49,8 @@ jobs:
49
run: make build
50
51
- name: Smoke test binary --help
52
- run: ./dist/kimi --help
+ run: |
53
+ ./dist/kimi --help | grep "Kimi" || { echo "Error: kimi --help did not produce expected output"; exit 1; }
54
55
- name: Upload binary artifact
56
if: success()
kimi.spec
@@ -3,7 +3,7 @@
3
from kimi_cli.utils.pyinstaller import datas, hiddenimports
4
5
a = Analysis(
6
- ["src/kimi_cli/__init__.py"],
+ ["src/kimi_cli/cli.py"],
7
pathex=[],
8
binaries=[],
9
datas=datas,
0 commit comments