mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
14 lines
296 B
Bash
14 lines
296 B
Bash
#!/usr/bin/env bash
|
|
|
|
BIN_DIR="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
if [[ -e "${BIN_DIR}/build-administration.sh" ]]; then
|
|
"${BIN_DIR}/build-administration.sh"
|
|
fi
|
|
|
|
if [[ -e "${BIN_DIR}/build-storefront.sh" ]]; then
|
|
"${BIN_DIR}/build-storefront.sh"
|
|
fi |