fixed powershell output
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
255665cae0
commit
4d553587aa
2 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ Dates are given in YYYY-MM-DD format.
|
||||||
- [`xdg-mime`] no longer uses git version
|
- [`xdg-mime`] no longer uses git version
|
||||||
- Output is sorted: Files that couldn't be read, then files with no known mimetype, then files with no known extensions,
|
- Output is sorted: Files that couldn't be read, then files with no known mimetype, then files with no known extensions,
|
||||||
then files with the wrong extension
|
then files with the wrong extension
|
||||||
|
- Fixed some bad formatting in PowerShell output
|
||||||
|
|
||||||
### v0.2.12 (2021-04-14)
|
### v0.2.12 (2021-04-14)
|
||||||
#### Features
|
#### Features
|
||||||
|
|
|
@ -226,7 +226,7 @@ impl Format for PowerShell {
|
||||||
fn unknown_type<W: Write>(&self, f: &mut W, path: &Path) -> io::Result<()> {
|
fn unknown_type<W: Write>(&self, f: &mut W, path: &Path) -> io::Result<()> {
|
||||||
smart_write(
|
smart_write(
|
||||||
f,
|
f,
|
||||||
&["<# Failed to detect mime type for ".into(), path.into(), "#>".into()],
|
&["<# Failed to detect mime type for ".into(), path.into(), "#>".into(), Writable::Newline],
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue