1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 03:59:54 +02:00

Add build check for .env file

This commit is contained in:
Kamran Ahmed
2019-11-16 15:35:37 +04:00
parent 0b0762d4f6
commit 0cdefbf7d0

View File

@@ -1,5 +1,13 @@
#!/usr/bin/env bash
ENV_FILE=.env
## Make sure that the configuration file exists before continuing
if [ ! -f "$ENV_FILE" ]; then
echo "$ENV_FILE does not exist"
exit 1
fi
next build
next export
echo 'roadmap.sh' > out/CNAME