From 95956f8e3060fbfdc25e204c33a600139b55022d Mon Sep 17 00:00:00 2001 From: Lynne Date: Sun, 13 Jun 2021 19:24:21 +1000 Subject: [PATCH] fixed powershell output format 0u0; --- src/formats.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/formats.rs b/src/formats.rs index b7d6bd5..4cadb84 100644 --- a/src/formats.rs +++ b/src/formats.rs @@ -242,7 +242,7 @@ impl Format for PowerShell { fn no_known_extension(&self, f: &mut W, path: &Path) -> io::Result<()> { smart_write( f, - writables![ + writablesln![ "Write-Output @'", Newline, "No known extension for ", @@ -256,7 +256,7 @@ impl Format for PowerShell { fn unreadable(&self, f: &mut W, path: &Path) -> io::Result<()> { smart_write( f, - writables!["Write-Output @'", Newline, "Failed to read ", path, Newline, "'@"], + writablesln!["Write-Output @'", Newline, "Failed to read ", path, Newline, "'@"], ) }