From d04f678d847bfed6268b4f4e8dad15b8dca41425 Mon Sep 17 00:00:00 2001 From: orhtej2 <2871798+orhtej2@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:33:01 +0200 Subject: [PATCH] Properly move static --- scripts/install | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/install b/scripts/install index 1ecce9f..fbc276e 100755 --- a/scripts/install +++ b/scripts/install @@ -69,10 +69,10 @@ pushd "$install_dir/build" # List of deps based on Dockerfile: https://github.com/umami-software/umami/blob/master/Dockerfile ynh_secure_remove --file="node_modules/" mv next.config.js .next/standalone/ - mv public/ .next/standalone/ - mv prisma/ .next/standalone/ - mv scripts/ .next/standalone/ - mv .next/static .next/standalone/ + mv public .next/standalone/ + mv prisma .next/standalone/ + mv scripts .next/standalone/ + mv .next/static .next/standalone/.next popd mkdir "$install_dir/release"