Skip to content

Commit

Permalink
Correct error message
Browse files Browse the repository at this point in the history
  • Loading branch information
rmunn committed Oct 22, 2024
1 parent 8c4641f commit 0f17376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LfMergeBridge/LanguageForgeSendReceiveActionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void IBridgeActionTypeHandler.StartWorking(IProgress progress, Dictionary<string
var fwDataExePathname = FindFwData();
if (fwDataExePathname == null)
{
throw new InvalidOperationException(string.Format(@"Can't find {0} or {0}.exe in the current directory ({1})", FwData, Directory.GetCurrentDirectory()));
throw new InvalidOperationException(string.Format(@"Can't find {0} or {0}.exe", FwData));
}

// Syncing of a new repo (actually created here) is not supported.
Expand Down

0 comments on commit 0f17376

Please sign in to comment.