Skip to content

Commit

Permalink
use bash, use python
Browse files Browse the repository at this point in the history
  • Loading branch information
beggers committed Jan 4, 2024
1 parent 56bdf18 commit 808a3e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chroma-js-client-generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install Python Dependencies
run: pip install -r requirements.txt && pip install -r requirements_dev.txt
- name: Run Server
run: Python -m chromadb.cli.cli run &
run: python -m chromadb.cli.cli run &
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion clients/js/genapi.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/bash

# curl -s http://localhost:8000/openapi.json | jq > openapi.json
curl -s http://localhost:8000/openapi.json | python -c "import sys, json; print(json.dumps(json.load(sys.stdin), indent=2))" > openapi.json
Expand Down

0 comments on commit 808a3e2

Please sign in to comment.