Signed-off-by: starainrt <i@b612.me>
@ -33,7 +33,7 @@ func SftpTransferOut(localFilePath, remotePath string, sftpClient *sftp.Client)
}
defer dstFile.Close()
for {
buf := make([]byte, 1024)
buf := make([]byte, 1048576)
n, err := srcFile.Read(buf)
dstFile.Write(buf[:n])
if err == io.EOF {