mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
17 lines
630 B
Bash
Executable file
17 lines
630 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
load_easy_docker_wizard_env_modules() {
|
|
local wizard_dir=""
|
|
wizard_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/env/validation.sh
|
|
source "${wizard_dir}/env/validation.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/env/apps.sh
|
|
source "${wizard_dir}/env/apps.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/env/update.sh
|
|
source "${wizard_dir}/env/update.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/env/collect.sh
|
|
source "${wizard_dir}/env/collect.sh"
|
|
}
|
|
|
|
load_easy_docker_wizard_env_modules
|