appstore-1panel/apps/onedev/11.1.3/scripts/init.sh
github-action update-app-version 99504c4823 Update app version [skip ci]
2024-09-18 10:02:23 +00:00

16 lines
247 B
Bash

#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi