Skip to content

Commit

Permalink
Remove redundant character in GPG error message
Browse files Browse the repository at this point in the history
  • Loading branch information
geluk committed Sep 2, 2021
1 parent be7b363 commit fc72ece
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private GpgInstallation ResolveFromPath(string gpgPathSpec)
}
catch (ExecutableNotFoundException)
{
throw new GpgError($"Gpg executable not found. Please verify that '${gpgPathSpec}' points to a valid GPG executable.");
throw new GpgError($"Gpg executable not found. Please verify that '{gpgPathSpec}' points to a valid GPG executable.");
}
var executable = fileSystem.FileInfo.FromFileName(resolved);

Expand Down

0 comments on commit fc72ece

Please sign in to comment.