From cbbd6fab2d0ceb4926ffcc80346ec7f10b65bfbc Mon Sep 17 00:00:00 2001 From: JustArchi Date: Sat, 21 Nov 2020 18:14:15 +0100 Subject: [PATCH] Work around OS X limitations --- .github/workflows/ci.yml | 4 ++-- .travis.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 065cf3887..9017e6d4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,8 +134,8 @@ jobs: # If we're including SteamTokenDumper plugin for this framework, copy it to output directory if [ -d "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}" ]; then - mkdir -p "out/${1}/plugins" - cp -pRT "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}" "out/${1}/plugins/${STEAM_TOKEN_DUMPER_NAME}" + mkdir -p "out/${1}/plugins/${STEAM_TOKEN_DUMPER_NAME}" + cp -pR "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}/"* "out/${1}/plugins/${STEAM_TOKEN_DUMPER_NAME}" fi # Include .ico file for all platforms, since only Windows script can bundle it inside the exe diff --git a/.travis.yml b/.travis.yml index dd2aefc1e..b8b2c3215 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,8 +67,8 @@ script: # If we're including SteamTokenDumper plugin for this framework, copy it to output directory if [ -d "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}" ]; then - mkdir -p "out/${1}/plugins" - cp -pRT "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}" "out/${1}/plugins/${STEAM_TOKEN_DUMPER_NAME}" + mkdir -p "out/${1}/plugins/${STEAM_TOKEN_DUMPER_NAME}" + cp -pR "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}/"* "out/${1}/plugins/${STEAM_TOKEN_DUMPER_NAME}" fi # Include .ico file for all platforms, since only Windows script can bundle it inside the exe