Outline - Remove app/components/Fade.ts (#3831)

This commit is contained in:
Remilia Da Costa Faro 2025-04-11 18:55:05 +02:00
parent 8e87fbd481
commit c081d7df5b
No known key found for this signature in database

View File

@ -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