Skip to content

Commit

Permalink
Merge pull request #3070 from vexx32/2776-spelling-error
Browse files Browse the repository at this point in the history
(#2776) Fix AssemblyFileExtractor spelling error
  • Loading branch information
gep13 authored Mar 16, 2023
2 parents 7bfe1ac + e612330 commit f112039
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ public static void extract_text_file_from_assembly(IFileSystem fileSystem, IAsse
/// <param name="overwriteExisting">
/// if set to <c>true</c> [overwrite existing].
/// </param>
/// <param name="throwEror">Throw an error if there are issues</param>
public static void extract_binary_file_from_assembly(IFileSystem fileSystem, IAssembly assembly, string manifestLocation, string filePath, bool overwriteExisting = false, bool throwEror = true)
/// <param name="throwError">Throw an error if there are issues</param>
public static void extract_binary_file_from_assembly(IFileSystem fileSystem, IAssembly assembly, string manifestLocation, string filePath, bool overwriteExisting = false, bool throwError = true)
{
if (overwriteExisting || !fileSystem.file_exists(filePath))
{
Expand All @@ -78,10 +78,10 @@ public static void extract_binary_file_from_assembly(IFileSystem fileSystem, IAs
fileSystem.write_file(filePath, () => assembly.get_manifest_stream(manifestLocation));
},
errorMessage:"Unable to extract binary",
throwError: throwEror,
throwError: throwError,
logWarningInsteadOfError: false,
logDebugInsteadOfError: !throwEror,
isSilent: !throwEror);
logDebugInsteadOfError: !throwError,
isSilent: !throwError);
}
}

Expand Down

0 comments on commit f112039

Please # to comment.