mirror of
https://github.com/SikongJueluo/kubejs-utils.git
synced 2026-01-10 08:17:50 +08:00
10 lines
176 B
Bash
10 lines
176 B
Bash
#!/bin/bash
|
|
|
|
if [ -f ".env" ]; then
|
|
export $(dotenvx get --format=shell -f .env)
|
|
fi
|
|
|
|
if [ -f ".env.local" ]; then
|
|
export $(dotenvx get --format=shell -f .env.local)
|
|
fi
|