From 96b93a16875eb8e857c4b29b07451a8d837966e7 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sat, 17 Jan 2026 18:38:36 -0300 Subject: [PATCH] comms: use sh for Element host-config script --- services/comms/scripts/element-host-config.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/comms/scripts/element-host-config.sh b/services/comms/scripts/element-host-config.sh index 6f381a9..1c6a488 100644 --- a/services/comms/scripts/element-host-config.sh +++ b/services/comms/scripts/element-host-config.sh @@ -1,9 +1,9 @@ -#!/usr/bin/env bash -set -euo pipefail +#!/bin/sh +set -eu HOST_CONFIG="/tmp/element-web-config/config.live.bstein.dev.json" BASE_CONFIG="/tmp/element-web-config/config.json" -if [[ -f "$BASE_CONFIG" ]]; then +if [ -f "$BASE_CONFIG" ]; then cp -f "$BASE_CONFIG" "$HOST_CONFIG" fi