Add option to disable symlinks (fixes #1017)

This commit is contained in:
Audrius Butkevicius
2014-11-30 22:10:32 +00:00
parent 2d7b0cf94d
commit 7ad711f554
5 changed files with 10 additions and 1 deletions

View File

@@ -1360,7 +1360,7 @@ func (m *Model) leveldbPanicWorkaround() {
func symlinkInvalid(isLink bool) bool {
if !symlinks.Supported && isLink {
SymlinkWarning.Do(func() {
l.Warnln("Symlinks are unsupported as they require Administrator priviledges. This might cause your folder to appear out of sync.")
l.Warnln("Symlinks are disabled, unsupported or require Administrator priviledges. This might cause your folder to appear out of sync.")
})
return true
}