Remove configuration file echo from firecrawl.sh

Removed configuration file output from the script.
This commit is contained in:
Michel Roegl-Brunner
2026-07-30 10:08:20 +02:00
committed by GitHub
parent 722c91dd48
commit 6aeff01570
-3
View File
@@ -41,7 +41,6 @@ function update_script() {
restore_backup restore_backup
# Firecrawl pins its FoundationDB client version in the API Dockerfile; FDB debs name arm64 as aarch64.
FDB_VERSION="$(awk -F= '/^ARG FDB_VERSION=/{print $2; exit}' /opt/firecrawl/apps/api/Dockerfile)" FDB_VERSION="$(awk -F= '/^ARG FDB_VERSION=/{print $2; exit}' /opt/firecrawl/apps/api/Dockerfile)"
if [[ -z "$FDB_VERSION" ]]; then if [[ -z "$FDB_VERSION" ]]; then
msg_error "FDB_VERSION pin not found in upstream Dockerfile" msg_error "FDB_VERSION pin not found in upstream Dockerfile"
@@ -90,5 +89,3 @@ msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW}Access it using the following URL:${CL}" echo -e "${INFO}${YW}Access it using the following URL:${CL}"
echo -e "${GATEWAY}${BGN}http://${IP}:3002${CL}" echo -e "${GATEWAY}${BGN}http://${IP}:3002${CL}"
echo -e "${INFO}${YW}Configuration file:${CL}"
echo -e "${TAB}${GATEWAY}${BGN}/opt/firecrawl/.env${CL}"