Closed arturocandela closed 3 weeks ago
@arturocandela
When I build the clien version 2..5.2 from the source without the --enable-debug, it gets all the folders to sync but when tries to get the files the thread crashes.
This is your problem - 'curl' compatibility. Please read:
You could also be hitting https://github.com/abraunegg/onedrive/issues/2874
Use a script, similar to the following to get the PR version that solves that issue:
#!/bin/bash
PR=2906
rm -rf ./onedrive-pr${PR}
git clone https://github.com/abraunegg/onedrive.git onedrive-pr${PR}
cd onedrive-pr${PR}
git fetch origin pull/${PR}/head:pr${PR}
git checkout pr${PR}
# Configure and Build
./configure --enable-debug --enable-notifications; make clean; make;
./onedrive --version
This script will create a local folder called onedrive-pr2906
with the PR version.
To run the PR, you need to run the client from the PR build directory:
./onedrive <any other options needed>
To install the PR, you will need to perform sudo make install to install the PR version to your system.
When running the PR, your version should be: onedrive v2.5.2-14-gb443bd2
or greater.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Describe the bug
When I build the clien version 2..5.2 from the source without the --enable-debug, it gets all the folders to sync but when tries to get the files the thread crashes.
When the client is build with --enable-debug, it works as expected with a lot of messages :)
Operating System Details
Client Installation Method
From Source
OneDrive Account Type
Business | Office365
What is your OneDrive Application Version
onedrive v2.5.2-13-g967327c
What is your OneDrive Application Configuration
What is your 'curl' version
Where is your 'sync_dir' located
Local
What are all your system 'mount points'
What are all your local file system partition types
How do you use 'onedrive'
2 Sistem.
Steps to reproduce the behaviour
Instal the client, build it and try to sync
Complete Verbose Log Output
Screenshots
No response
Other Log Information or Details
No response
Additional context
No response