We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is possible on windows to use the bash (e.g., after installing the git commandline). Dotsync also runs fine on windows.
My issue: Windows does not support symlinks on its filesystem
My temp-fix: Replace all ln -s with cp -r
ln -s
cp -r
Better solution: Detect operating-system or provide a flag, which does the same as -L but for copying instead of linking Or use something like this: https://stackoverflow.com/questions/18641864/git-bash-shell-fails-to-create-symbolic-links
-L
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It is possible on windows to use the bash (e.g., after installing the git commandline). Dotsync also runs fine on windows.
My issue:
Windows does not support symlinks on its filesystem
My temp-fix:
Replace all
ln -s
withcp -r
Better solution:
Detect operating-system or provide a flag, which does the same as
-L
but for copying instead of linkingOr use something like this: https://stackoverflow.com/questions/18641864/git-bash-shell-fails-to-create-symbolic-links
The text was updated successfully, but these errors were encountered: