Skip to content

Commit

Permalink
From v13: Fixes #604. don't prepend path with ~ (for no random reason!)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJump committed Apr 17, 2024
1 parent 4aacf2e commit cf77aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uSync.BackOffice/Services/SyncFileService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ public IEnumerable<OrderedNodeInfo> MergeFolders(string[] folders, string extens

foreach (var folder in folders)
{
var absPath = GetAbsPath($"~/{folder}");
var absPath = GetAbsPath(folder);

if (DirectoryExists(absPath) is false) continue;

Expand Down

0 comments on commit cf77aeb

Please sign in to comment.