diff options
author | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-06 15:10:35 -0300 |
---|---|---|
committer | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-06 15:10:35 -0300 |
commit | 87df5a27cb34ada02f54dacf4299574f04038612 (patch) | |
tree | edd286add16ec82bc4b8467566ede15a90883a39 /src/lib/pgp | |
parent | 04bcfc551e3f446d26358971115ac27e34f03e44 (diff) |
fix: env name conflict
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/lib/pgp')
-rw-r--r-- | src/lib/pgp/trust.ts | 2 | ||||
-rw-r--r-- | src/lib/pgp/verify.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/pgp/trust.ts b/src/lib/pgp/trust.ts index 34d454b..a79a2b6 100644 --- a/src/lib/pgp/trust.ts +++ b/src/lib/pgp/trust.ts @@ -2,7 +2,7 @@ import type { Key } from "npm:openpgp@^6.1.1"; import { createKeysFromDir } from "./create.ts"; import type { AsyncYieldType } from "../../utils/iterator.ts"; import { equal, getCall } from "../../utils/anonymous.ts"; -import { env } from "../env.ts"; +import { env } from "../environment.ts"; let trusted: | Iterable<AsyncYieldType<ReturnType<typeof createKeysFromDir>>> diff --git a/src/lib/pgp/verify.ts b/src/lib/pgp/verify.ts index f37c0bb..026b6df 100644 --- a/src/lib/pgp/verify.ts +++ b/src/lib/pgp/verify.ts @@ -23,7 +23,7 @@ import { Packet, Signature } from "./sign.ts"; import type { Commit } from "../git/types.ts"; import { findMapAsync, type MaybeIterable } from "../../utils/iterator.ts"; import { getUserIDsFromKey } from "./user.ts"; -import { env } from "../env.ts"; +import { env } from "../environment.ts"; type DataURL = [URL, URL?]; type Corrupted = [false] | [true, Error]; |