This repository was archived by the owner on Jun 26, 2023. It is now read-only.

Description
ie.
> Do-SomeInvalidCommand
# some error about Do-SomeInvalidCommand not being a real command
> $?
True
while ( $True -eq $True ) {
Start-Sleep 1;
echo "loop";
}
# Hit Ctrl+C
> $?
True
Both of these should have resulted in $? being False, as they are without PSColor imported.
I disabled all other modules for testing it was certainly PSColor which was absorbing the last error code.