Format and cleanup code

This commit is contained in:
2024-12-18 20:13:12 -05:00
parent aa7bad945a
commit 83ef124c41
15 changed files with 106 additions and 109 deletions

View File

@@ -1,13 +1,13 @@
#!/bin/sh
#!/bin/bash
# Enable exporting variables
set -a
# Source the default env variables
echo "Sourcing build environment"
echo "Sourcing build environment..."
source .env
# If there is a .env.local present, source it
echo "Sourcing custom environment"
echo "Sourcing custom environment..."
if [ -f .env.local ]; then
source ./.env.local
fi