Jake Bolton
Jake Bolton
@tsmarvin What do you get running these? ```ps1 > Resolve-Path / # and > set-location -LiteralPath '/' > Get-ChildItem -path '/' ``` Maybe it's related to to windows root paths....
I've tried a bunch of variations. You can reproduce it with almost any expression that starts with a `(` ### You can reproduce it with this ```ps1 ($x = 10)...
Possibly related, I noticed that they end up copying by value, not ref, `$serr = $error` does not. ```ps1 $serr = $error $serr2 = $error | select -first 3 $serr3...
> Which comes back with branch information when pretty-printed, but not when assigned to a string. That's caused by the implicit `--decorate=auto` argument. [Log.Decorate](https://git-scm.com/docs/git-log#Documentation/git-log.txt-logdecorate) ## Working args  ```ps1 $color...
I think I'm still getting the error. I *think* mine is patched because my log matches the new log messages in the diff above. If not, do I test it...
> We need to support both empty values and case sensitive key conflicts *I think* this only applies to key names with 1 or more instances of `U+0000` Here's some...