Skip to content

Commit

Permalink
Merge pull request #62 from fluentci-io/fix/agent-stop-services
Browse files Browse the repository at this point in the history
fix(agent): always stop services at the end of pipeline execution
  • Loading branch information
tsirysndr authored Jul 27, 2024
2 parents 6eb071c + adbaa64 commit 0c61986
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ Requirements:

**Latest (CLI):**

- `Mac`: arm64: [fluentci_v0.15.6_aarch64-apple-darwin.tar.gz](https://github.com/fluentci-io/fluentci/releases/download/v0.15.6/fluentci_v0.15.6_aarch64-apple-darwin.tar.gz) intel: [fluentci_v0.15.6_x86_64-apple-darwin.tar.gz](https://github.com/fluentci-io/fluentci/releases/download/v0.15.6/fluentci_v0.15.6_x86_64-apple-darwin.tar.gz)
- `Linux`: intel: [fluentci_v0.15.6_x86_64-unknown-linux-gnu.tar.gz](https://github.com/fluentci-io/fluentci/releases/download/v0.15.6/fluentci_v0.15.6_x86_64-unknown-linux-gnu.tar.gz) arm64: [fluentci_v0.15.6_aarch64-unknown-linux-gnu.tar.gz](https://github.com/fluentci-io/fluentci/releases/download/v0.15.6/fluentci_v0.15.6_aarch64-unknown-linux-gnu.tar.gz)
- `Mac`: arm64: [fluentci_v0.15.7_aarch64-apple-darwin.tar.gz](https://github.com/fluentci-io/fluentci/releases/download/v0.15.7/fluentci_v0.15.7_aarch64-apple-darwin.tar.gz) intel: [fluentci_v0.15.7_x86_64-apple-darwin.tar.gz](https://github.com/fluentci-io/fluentci/releases/download/v0.15.7/fluentci_v0.15.7_x86_64-apple-darwin.tar.gz)
- `Linux`: intel: [fluentci_v0.15.7_x86_64-unknown-linux-gnu.tar.gz](https://github.com/fluentci-io/fluentci/releases/download/v0.15.7/fluentci_v0.15.7_x86_64-unknown-linux-gnu.tar.gz) arm64: [fluentci_v0.15.7_aarch64-unknown-linux-gnu.tar.gz](https://github.com/fluentci-io/fluentci/releases/download/v0.15.7/fluentci_v0.15.7_aarch64-unknown-linux-gnu.tar.gz)

## ✨ Quick Start

Expand All @@ -110,7 +110,7 @@ fluentci studio
fluentci --help

Usage: fluentci [pipeline] [jobs...]
Version: 0.15.6
Version: 0.15.7

Description:

Expand Down
2 changes: 1 addition & 1 deletion src/consts.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { dir } from "../deps.ts";
export const VERSION = "0.15.6";
export const VERSION = "0.15.7";

export const BASE_URL = "https://api.fluentci.io/v1";

Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ export async function stopServices(cwd: string) {
let infos: Record<string, any> = {};

for (const file of files) {
const manifest = procfile.parse(Deno.readTextFileSync(file));
const manifest = procfile.parse(Deno.readTextFileSync(cwd + "/" + file));
services.push(...Object.keys(manifest));
infos = {
...infos,
Expand Down

0 comments on commit 0c61986

Please sign in to comment.