mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-31 03:11:07 +02:00
Fixed up comments.
This commit is contained in:
parent
459d6ea906
commit
96108cb758
@ -114,7 +114,8 @@ protected override void CopyFileInternal(string source, string destination, bool
|
||||
}
|
||||
|
||||
if (isSameDir)
|
||||
{ // We're in the same dir, so we can preserve relative symlinks.
|
||||
{
|
||||
// We're in the same dir, so we can preserve relative symlinks.
|
||||
newFile.CreateSymbolicLinkTo(symlinkInfo.ContentsPath);
|
||||
}
|
||||
else
|
||||
@ -142,7 +143,8 @@ protected override void MoveFileInternal(string source, string destination)
|
||||
var newFile = new UnixSymbolicLinkInfo(destination);
|
||||
|
||||
if (isSameDir)
|
||||
{ // We're in the same dir, so we can preserve relative symlinks.
|
||||
{
|
||||
// We're in the same dir, so we can preserve relative symlinks.
|
||||
newFile.CreateSymbolicLinkTo(symlinkInfo.ContentsPath);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user