Skip to content

Instantly share code, notes, and snippets.

@douglaslassance
Created July 30, 2022 22:35
Show Gist options
  • Save douglaslassance/0d92fb45dd07e49b0555403c548fc281 to your computer and use it in GitHub Desktop.
Save douglaslassance/0d92fb45dd07e49b0555403c548fc281 to your computer and use it in GitHub Desktop.
@echo off
pushd "%~dp0"
for /F "delims=" %%L in ('git rev-parse HEAD') do (set "UNREAL_ENGINE_COMMIT=%%L")
rclone config create spaces s3 env_auth false access_key_id %SPACES_ACCESS_KEY% secret_access_key %SPACES_SECRET% endpoint %SPACES_ENDPOINT% acl private
rclone sync ../LocalBuilds/Engine spaces:/playsthetic/unreal-engine/%UNREAL_ENGINE_COMMIT%/Win64 --progress --exclude *.pdb
rem
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment