mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-09-22 22:38:14 +03:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
import { existsSync } from "fs"
|
|
|
|
if (!existsSync(".env")) {
|
|
console.error(" I did not see .env being here. You sure it was there?")
|
|
console.error(" Copy .env.example to .env, edit .env, and try again.\n")
|
|
process.exit(1)
|
|
}
|
|
|
|
process.exit(0)
|