diff --git a/README.md b/README.md index f62c8be..32407b9 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ fluentci # Run the pipeline fluentci --help Usage: fluentci [pipeline] [jobs...] -Version: 0.12.1 +Version: 0.12.2 Description: diff --git a/flake.nix b/flake.nix index 3431629..e0bcb18 100644 --- a/flake.nix +++ b/flake.nix @@ -25,7 +25,7 @@ packages.default = pkgs.deno2nix.mkExecutable { pname = "fluentci"; - version = "0.12.1"; + version = "0.12.2"; src = ./.; lockfile = "./deno.lock"; diff --git a/src/cmd/run.ts b/src/cmd/run.ts index d3afaf3..a5c9b1f 100644 --- a/src/cmd/run.ts +++ b/src/cmd/run.ts @@ -380,7 +380,7 @@ const saveRepositoryMetadata = async (id: string) => { }; const runWasmPlugin = async (pipeline: string, job: string[]) => { - if (!(await fluentciPluginDirExists())) { + if (!(await fluentciPluginDirExists()) && pipeline === ".") { console.log("This directory does not contain a FluentCI plugin"); Deno.exit(1); } diff --git a/src/consts.ts b/src/consts.ts index 96e0c38..64e6991 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,6 +1,6 @@ import { dir } from "../deps.ts"; -export const VERSION = "0.12.1"; +export const VERSION = "0.12.2"; export const BASE_URL = "https://api.fluentci.io/v1";