gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 4e31c73146cd2044ca3c43ff4196bfb90433b868
parent f6385f9b8ad94be33fbf23ac47ff052184d5cd4c
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat,  1 Feb 2025 13:02:03 +0100

reduce number of transfers to 5 to prevent that we exceed the connection limit

Diffstat:
Mscripts/rclone.cmake | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/rclone.cmake b/scripts/rclone.cmake @@ -12,7 +12,7 @@ endif() macro(copyArtefacts TARGET FOLDER FILEFILTER) set(RCLONE_RESULT 0) - execute_process(COMMAND rclone --transfers 16 -v --config ${RCLONE_CONF} copy --include "/*${FILEFILTER}*.{zip,deb,rpm}" --min-size 8k ${ROOT_DIR}/ "${TARGET}/${FOLDER}/" + execute_process(COMMAND rclone --transfers 5 -v --config ${RCLONE_CONF} copy --include "/*${FILEFILTER}*.{zip,deb,rpm}" --min-size 8k ${ROOT_DIR}/ "${TARGET}/${FOLDER}/" COMMAND_ECHO STDOUT RESULT_VARIABLE RCLONE_RESULT WORKING_DIRECTORY ${ROOT_DIR}) if(RCLONE_RESULT) message(FATAL_ERROR "Failed to execute rclone: " ${CMD_RESULT})