From d10058ea441725a6e11d82cc5c274cc7033a95f9 Mon Sep 17 00:00:00 2001 From: otavepto <153766569+otavepto@users.noreply.github.com> Date: Tue, 26 Dec 2023 23:54:20 +0200 Subject: [PATCH] in Linux build script, copy the entire steamclient_loader folder --- build_linux.sh | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/build_linux.sh b/build_linux.sh index 2d613356..8c32c390 100644 --- a/build_linux.sh +++ b/build_linux.sh @@ -366,19 +366,7 @@ fi ## tools if [[ "$BUILD_TOOL_CLIENT_LDR" = "1" ]]; then [[ -d "$build_root_tools/steamclient_loader/" ]] || mkdir -p "$build_root_tools/steamclient_loader/" - steamclient_files=( - "ldr_appid.txt" - "ldr_cmdline.txt" - "ldr_cwd.txt" - "ldr_exe.txt" - "ldr_steam_rt.txt" - "README.md" - "steamclient_loader.sh" - ) - for f in "${steamclient_files[@]}"; do - cp -f "$tools_dir/steamclient_loader/linux/$f" "$build_root_tools/steamclient_loader/"; - done - + cp -f "$tools_dir"/steamclient_loader/linux/* "$build_root_tools/steamclient_loader/" echo; echo; fi