Skip to content

Commit a83af5b

Browse files
committed
fix: fix gptscript binary path and prep for v0.7.3 release
Signed-off-by: Donnie Adams <[email protected]>
1 parent 5460c8d commit a83af5b

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gptscript-ai/gptscript",
3-
"version": "v0.7.2",
3+
"version": "v0.7.3",
44
"description": "Run gptscript in node.js",
55
"source": "src/gptscript.ts",
66
"main": "dist/gptscript.js",

src/gptscript.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import http from "http"
22
import path from "path"
33
import child_process from "child_process"
4+
import {fileURLToPath} from "url"
45

56
export interface RunOpts {
67
input?: string
@@ -667,7 +668,7 @@ function getCmdPath(): string {
667668
return process.env.GPTSCRIPT_BIN
668669
}
669670

670-
return path.resolve("..", "bin", "gptscript")
671+
return path.join(path.dirname(fileURLToPath(import.meta.url)), "..", "..", "bin", "gptscript")
671672
}
672673

673674
function parseBlocksFromNodes(nodes: any[]): Block[] {

0 commit comments

Comments
 (0)