diff --git a/README.md b/README.md index ea4e169..1be0e96 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ fluentci studio fluentci --help Usage: fluentci [pipeline] [jobs...] -Version: 0.14.4 +Version: 0.14.5 Description: diff --git a/src/cmd/studio.ts b/src/cmd/studio.ts index 1c477dd..51ff57a 100644 --- a/src/cmd/studio.ts +++ b/src/cmd/studio.ts @@ -125,7 +125,7 @@ async function studio({ port }: { port?: number }) { url.hostname = "127.0.0.1"; url.port = FLUENTCI_STUDIO_PORT; - return await fetch(url.href, { + return await fetch(url.href.replace("project/assets", "assets"), { headers: req.headers, method: req.method, body: req.body, diff --git a/src/consts.ts b/src/consts.ts index c2f059a..51f02a9 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,6 +1,6 @@ import { dir } from "../deps.ts"; -export const VERSION = "0.14.4"; +export const VERSION = "0.14.5"; export const BASE_URL = "https://api.fluentci.io/v1";