From a8d6441ad1b8c9757ff6398d5ec3492cfc2b4b95 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Tue, 24 Oct 2023 14:47:53 +0530 Subject: [PATCH] fix/scripts: replace build assets symlink with copy (#11205) --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 7a5a6c5daf..3f8928ba98 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -53,7 +53,7 @@ function build_translation_archives { done cd "$target_directory" - ln -s tldr-pages.zip tldr-pages.en.zip + cp -r tldr-pages.zip tldr-pages.en.zip } ###################################