Files
coolify-examples/shopware6/bin/build-js.sh
2025-12-13 20:06:52 +01:00

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