Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

don't prepend message about .env.local if creating .env.local #7288

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1281,8 +1281,7 @@ export default async function initSanity(
'# Warning: Do not add secrets (API keys and similar) to this file, as it source controlled!',
'# Use `.env.local` for any secrets, and ensure it is not added to source control',
].join('\n')
const shouldPrependWarning = !existingEnv.includes(warningComment)
// prepend warning comment to the env vars if one does not exist
const shouldPrependWarning = filename !== '.env.local' && !existingEnv.includes(warningComment)
if (shouldPrependWarning) {
await fs.writeFile(fileOutputPath, `${warningComment}\n\n${updatedEnv}`, {
encoding: 'utf8',
Expand Down
Loading