From 78f63b157e8a17a0ad0f977b44a8ffb96c4d6b56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Fri, 12 Jul 2024 18:13:36 +0200 Subject: [PATCH] Fix: don't mv things from source, it breaks change-url --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 45886c8..7631af9 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -34,7 +34,7 @@ _build_install_framagames() { ynh_secure_remove --file="$install_dir/www" mv -f "$install_dir/sources/dist" "$install_dir/www" - mv -f "$install_dir/sources/games/"* "$install_dir/www" + cp -r "$install_dir/sources/games/"* "$install_dir/www" mv -f "$install_dir/www/framagames/"* "$install_dir/www" }