summaryrefslogtreecommitdiff
path: root/tools/release/deno_workspace.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/deno_workspace.ts')
-rw-r--r--tools/release/deno_workspace.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/release/deno_workspace.ts b/tools/release/deno_workspace.ts
index 6f5b64590..d36a2a22f 100644
--- a/tools/release/deno_workspace.ts
+++ b/tools/release/deno_workspace.ts
@@ -12,7 +12,10 @@ export class DenoWorkspace {
static async load(): Promise<DenoWorkspace> {
return new DenoWorkspace(
- await Repo.load("deno", DenoWorkspace.rootDirPath),
+ await Repo.load({
+ name: "deno",
+ path: DenoWorkspace.rootDirPath,
+ }),
);
}