Add build check for .env file

pull/1657/head
Kamran Ahmed 5 years ago
parent 0b0762d4f6
commit 0cdefbf7d0
  1. 8
      scripts/build.sh

@ -1,5 +1,13 @@
#!/usr/bin/env bash #!/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 build
next export next export
echo 'roadmap.sh' > out/CNAME echo 'roadmap.sh' > out/CNAME

Loading…
Cancel
Save