Skip to content

Commit cd3f1e7

Browse files
committed
lint
1 parent 3e5cf87 commit cd3f1e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.eslintcache

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

packages/backend/script/generate-dev-vars.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async function generateDevVars() {
3737
};
3838

3939
// Only generate private key if missing
40-
if (!("NITRO_PRIVATE_KEY" in existingVars)) {
40+
if ("NITRO_PRIVATE_KEY" in existingVars === false) {
4141
const { privateKey } = crypto.generateKeyPairSync("rsa", {
4242
modulusLength: 2048,
4343
publicKeyEncoding: {

0 commit comments

Comments
 (0)