Created
July 30, 2022 22:35
-
-
Save douglaslassance/0d92fb45dd07e49b0555403c548fc281 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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