Skip to content

Commit

Permalink
fix: allow empty env when building
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Aug 19, 2023
1 parent 17359ed commit 285fd92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export interface GitPerson {
date?: string;
}

await load({ export: true });
await load({ export: true, allowEmptyValues: true });

const GH_OWNER = globalThis.Deno?.env.get("GH_OWNER") ?? "ts-why";
const GH_REPO = globalThis.Deno?.env.get("GH_REPO") ?? "tswhy";
Expand Down

0 comments on commit 285fd92

Please sign in to comment.