From 285fd923657ce58e85cba8ae37e65f6f7116f2f1 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Sat, 19 Aug 2023 17:46:35 +1000 Subject: [PATCH] fix: allow empty env when building --- util/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/github.ts b/util/github.ts index 8f9c3bc..b14252b 100644 --- a/util/github.ts +++ b/util/github.ts @@ -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";