Skip to content

Commit

Permalink
Fix error message in env.ts file
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Miller committed Nov 3, 2023
1 parent 0108641 commit 0661c32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const outputName = '.env.local'
// Read the .env file
const envFilePath = path.join(__dirname, '../../' + outputName)
if (!fs.existsSync(envFilePath)) {
console.error('🛑 .env.local file does not exist')
process.exit(1)
console.log('🛑 .env.local file does not exist')
process.exit(0)
}
const envFileContent = fs.readFileSync(envFilePath, 'utf8')

Expand Down

0 comments on commit 0661c32

Please sign in to comment.