Skip to content

Commit

Permalink
Merge pull request #7 from fluentci-io/fix/search
Browse files Browse the repository at this point in the history
fix issue with search command
  • Loading branch information
tsirysndr authored Dec 8, 2023
2 parents 1ac638c + 70db2d1 commit 51a897e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ fluentci # Run the pipeline
fluentci --help

Usage: fluentci [pipeline] [jobs...]
Version: 0.9.0
Version: 0.9.1

Description:

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

packages.default = pkgs.deno2nix.mkExecutable {
pname = "fluentci";
version = "0.8.1";
version = "0.9.1";

src = ./.;
lockfile = "./deno.lock";
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { brightGreen } from "./deps.ts";
export async function main() {
await new Command()
.name("fluentci")
.version("0.9.0")
.version("0.9.1")
.description(
`
.
Expand Down
6 changes: 3 additions & 3 deletions src/cmd/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ async function search(query: string, options: { limit: number }) {

for (const item of results) {
console.log(
`* ${cyan(item.name)}${gray("@")}${gray(item.version)} - ${
item.description
}`
`* ${cyan(item.name)}${gray("@")}${gray(
item.version || item.default_branch
)} - ${item.description}`
);
}
}
Expand Down

0 comments on commit 51a897e

Please sign in to comment.