Skip to content

Commit

Permalink
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 Mar 14, 2024
1 parent 199a407 commit c161aa7
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 @@ -494,7 +494,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 c161aa7

Please sign in to comment.