From 2896462a6fed0c98db588682b14b2e8dc7e946bc Mon Sep 17 00:00:00 2001 From: "Randolph W. Aarseth II" Date: Mon, 9 Dec 2024 02:19:48 -0700 Subject: [PATCH] asd --- .github/workflows/android_builds.yml | 14 ++++++++++---- .github/workflows/ios_builds.yml | 7 +++++-- .github/workflows/linux_builds.yml | 7 +++++-- .github/workflows/macos_builds.yml | 14 ++++++++++---- .github/workflows/windows_builds.yml | 14 ++++++++++---- 5 files changed, 40 insertions(+), 16 deletions(-) diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml index 8a6d71b..8bf139b 100644 --- a/.github/workflows/android_builds.yml +++ b/.github/workflows/android_builds.yml @@ -184,8 +184,11 @@ jobs: mkdir -p modules/mono/glue/GodotSharp/GodotSharpEditor # Move the extracted folders to their target locations - cp -r temp_extract/GodotSharp/. modules/mono/glue/GodotSharp/GodotSharp/ - cp -r temp_extract/GodotSharpEditor/. modules/mono/glue/GodotSharp/GodotSharpEditor/ + rsync -av temp_extract/GodotSharp/ modules/mono/glue/GodotSharp/GodotSharp/ + rsync -av temp_extract/GodotSharpEditor/ modules/mono/glue/GodotSharp/GodotSharpEditor/ + + ls -la ./modules/mono/glue/GodotSharp/GodotSharp/ + ls -la ./modules/mono/glue/GodotSharp/GodotSharpEditor/ # Clean up the temporary directory rm -rf temp_extract monoglue.tar.gz @@ -479,8 +482,11 @@ jobs: mkdir -p modules/mono/glue/GodotSharp/GodotSharpEditor # Move the extracted folders to their target locations - mv temp_extract/GodotSharp/* modules/mono/glue/GodotSharp/GodotSharp/ - mv temp_extract/GodotSharpEditor/* modules/mono/glue/GodotSharp/GodotSharpEditor/ + rsync -av temp_extract/GodotSharp/ modules/mono/glue/GodotSharp/GodotSharp/ + rsync -av temp_extract/GodotSharpEditor/ modules/mono/glue/GodotSharp/GodotSharpEditor/ + + ls -la ./modules/mono/glue/GodotSharp/GodotSharp/ + ls -la ./modules/mono/glue/GodotSharp/GodotSharpEditor/ # Clean up the temporary directory rm -rf temp_extract monoglue.tar.gz diff --git a/.github/workflows/ios_builds.yml b/.github/workflows/ios_builds.yml index f5102c5..0303a5f 100644 --- a/.github/workflows/ios_builds.yml +++ b/.github/workflows/ios_builds.yml @@ -175,8 +175,11 @@ jobs: mkdir -p modules/mono/glue/GodotSharp/GodotSharpEditor # Move the extracted folders to their target locations - mv temp_extract/GodotSharp/* modules/mono/glue/GodotSharp/GodotSharp/ - mv temp_extract/GodotSharpEditor/* modules/mono/glue/GodotSharp/GodotSharpEditor/ + rsync -av temp_extract/GodotSharp/ modules/mono/glue/GodotSharp/GodotSharp/ + rsync -av temp_extract/GodotSharpEditor/ modules/mono/glue/GodotSharp/GodotSharpEditor/ + + ls -la ./modules/mono/glue/GodotSharp/GodotSharp/ + ls -la ./modules/mono/glue/GodotSharp/GodotSharpEditor/ # Clean up the temporary directory rm -rf temp_extract monoglue.tar.gz diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml index 1047983..0bb0b00 100644 --- a/.github/workflows/linux_builds.yml +++ b/.github/workflows/linux_builds.yml @@ -304,8 +304,11 @@ jobs: mkdir -p modules/mono/glue/GodotSharp/GodotSharpEditor # Move the extracted folders to their target locations - cp -r temp_extract/GodotSharp/. modules/mono/glue/GodotSharp/GodotSharp/ - cp -r temp_extract/GodotSharpEditor/. modules/mono/glue/GodotSharp/GodotSharpEditor/ + rsync -av temp_extract/GodotSharp/ modules/mono/glue/GodotSharp/GodotSharp/ + rsync -av temp_extract/GodotSharpEditor/ modules/mono/glue/GodotSharp/GodotSharpEditor/ + + ls -la ./modules/mono/glue/GodotSharp/GodotSharp/ + ls -la ./modules/mono/glue/GodotSharp/GodotSharpEditor/ # Clean up the temporary directory rm -rf temp_extract monoglue.tar.gz diff --git a/.github/workflows/macos_builds.yml b/.github/workflows/macos_builds.yml index 260e67c..25bd7d4 100644 --- a/.github/workflows/macos_builds.yml +++ b/.github/workflows/macos_builds.yml @@ -184,8 +184,11 @@ jobs: mkdir -p modules/mono/glue/GodotSharp/GodotSharpEditor # Move the extracted folders to their target locations - cp -r temp_extract/GodotSharp/. modules/mono/glue/GodotSharp/GodotSharp/ - cp -r temp_extract/GodotSharpEditor/. modules/mono/glue/GodotSharp/GodotSharpEditor/ + rsync -av temp_extract/GodotSharp/ modules/mono/glue/GodotSharp/GodotSharp/ + rsync -av temp_extract/GodotSharpEditor/ modules/mono/glue/GodotSharp/GodotSharpEditor/ + + ls -la ./modules/mono/glue/GodotSharp/GodotSharp/ + ls -la ./modules/mono/glue/GodotSharp/GodotSharpEditor/ # Clean up the temporary directory rm -rf temp_extract monoglue.tar.gz @@ -442,8 +445,11 @@ jobs: mkdir -p modules/mono/glue/GodotSharp/GodotSharpEditor # Move the extracted folders to their target locations - mv temp_extract/GodotSharp/* modules/mono/glue/GodotSharp/GodotSharp/ - mv temp_extract/GodotSharpEditor/* modules/mono/glue/GodotSharp/GodotSharpEditor/ + rsync -av temp_extract/GodotSharp/ modules/mono/glue/GodotSharp/GodotSharp/ + rsync -av temp_extract/GodotSharpEditor/ modules/mono/glue/GodotSharp/GodotSharpEditor/ + + ls -la ./modules/mono/glue/GodotSharp/GodotSharp/ + ls -la ./modules/mono/glue/GodotSharp/GodotSharpEditor/ # Clean up the temporary directory rm -rf temp_extract monoglue.tar.gz diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index dedd7d2..6f0af6e 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -327,8 +327,11 @@ jobs: mkdir -p modules/mono/glue/GodotSharp/GodotSharpEditor # Move the extracted folders to their target locations - cp -r temp_extract/GodotSharp/. modules/mono/glue/GodotSharp/GodotSharp/ - cp -r temp_extract/GodotSharpEditor/. modules/mono/glue/GodotSharp/GodotSharpEditor/ + rsync -av temp_extract/GodotSharp/ modules/mono/glue/GodotSharp/GodotSharp/ + rsync -av temp_extract/GodotSharpEditor/ modules/mono/glue/GodotSharp/GodotSharpEditor/ + + ls -la ./modules/mono/glue/GodotSharp/GodotSharp/ + ls -la ./modules/mono/glue/GodotSharp/GodotSharpEditor/ # Clean up the temporary directory rm -rf temp_extract monoglue.tar.gz @@ -680,8 +683,11 @@ jobs: mkdir -p modules/mono/glue/GodotSharp/GodotSharpEditor # Move the extracted folders to their target locations - mv temp_extract/GodotSharp/* modules/mono/glue/GodotSharp/GodotSharp/ - mv temp_extract/GodotSharpEditor/* modules/mono/glue/GodotSharp/GodotSharpEditor/ + rsync -av temp_extract/GodotSharp/ modules/mono/glue/GodotSharp/GodotSharp/ + rsync -av temp_extract/GodotSharpEditor/ modules/mono/glue/GodotSharp/GodotSharpEditor/ + + ls -la ./modules/mono/glue/GodotSharp/GodotSharp/ + ls -la ./modules/mono/glue/GodotSharp/GodotSharpEditor/ # Clean up the temporary directory rm -rf temp_extract monoglue.tar.gz