From c081d7df5bcbeebc18e37138414542202d8282d7 Mon Sep 17 00:00:00 2001 From: Remilia Da Costa Faro Date: Fri, 11 Apr 2025 18:55:05 +0200 Subject: [PATCH] Outline - Remove app/components/Fade.ts (#3831) --- ct/outline.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ct/outline.sh b/ct/outline.sh index 68c06a215..b0d312227 100644 --- a/ct/outline.sh +++ b/ct/outline.sh @@ -36,7 +36,10 @@ function update_script() { msg_info "Updating ${APP} to ${RELEASE}" temp_file=$(mktemp) rm -rf /opt/outline/node_modules -curl -fsSL "https://github.com/outline/outline/archive/refs/tags/v${RELEASE}.tar.gz" -o "$temp_file" + if [ -f /opt/outline/app/components/Fade.ts ]; then + rm -f /opt/outline/app/components/Fade.ts + fi + curl -fsSL "https://github.com/outline/outline/archive/refs/tags/v${RELEASE}.tar.gz" -o "$temp_file" tar zxf $temp_file cp -rf outline-${RELEASE}/* /opt/outline cd /opt/outline