fix:add windows support
This commit is contained in:
parent
5a6c3f2b04
commit
b1515dd069
|
@ -157,7 +157,11 @@ int uploadRsync(char* id, char* path){
|
||||||
changeDirFromWindowsToLinux(path, pathTransform);
|
changeDirFromWindowsToLinux(path, pathTransform);
|
||||||
#endif
|
#endif
|
||||||
char command[PATH_MAX] = {0};
|
char command[PATH_MAX] = {0};
|
||||||
|
#ifdef WINDOWS
|
||||||
|
if(pathTransform[strlen(pathTransform) - 1] != '/'){
|
||||||
|
#else
|
||||||
if(path[strlen(path) - 1] != '/'){
|
if(path[strlen(path) - 1] != '/'){
|
||||||
|
#endif
|
||||||
snprintf(command, PATH_MAX, "rsync -av --delete --timeout=10 --bwlimit=100000 %s/ rsync://%s/checkpoint/%s/",
|
snprintf(command, PATH_MAX, "rsync -av --delete --timeout=10 --bwlimit=100000 %s/ rsync://%s/checkpoint/%s/",
|
||||||
#ifdef WINDOWS
|
#ifdef WINDOWS
|
||||||
pathTransform
|
pathTransform
|
||||||
|
|
Loading…
Reference in New Issue