From e7161c93d292979686430ecc56ffb00cf9bdbab3 Mon Sep 17 00:00:00 2001 From: Soubinan Date: Fri, 24 Jan 2025 16:07:21 -0500 Subject: [PATCH] update mafl.yml: fix path error --- templates/mafl.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/mafl.yml b/templates/mafl.yml index e6831b5..4ba1c74 100644 --- a/templates/mafl.yml +++ b/templates/mafl.yml @@ -87,9 +87,9 @@ instructions: #!/bin/bash set -eux - git clone https://github.com/hywax/mafl -b v{{ image.serial }} --depth 1 /app + git clone https://github.com/hywax/mafl -b v{{ image.serial }} --depth 1 /tmp/mafl - cd /app + cd /tmp/mafl rm yarn.lock npm install -g yarn npx @nuxt/telemetry disable @@ -102,7 +102,7 @@ instructions: cp .example/config.yml /app/data/config.yml cp /app/extra/healthcheck.mjs /opt/mafl/extra/healthcheck.mjs - rm -rf /app + rm -rf /tmp/mafl touch /opt/mafl/.installed__ systemctl enable mafl.service