GithubHelp home page GithubHelp logo

Comments (4)

michaeltlombardi avatar michaeltlombardi commented on May 28, 2024 1

In my experience, this was only happening with plugins not grabbed from the gallery as of the last update - locally installed plugins wrote an error, plugins downloaded and installed from the gallery did not.

from poshbot.

devblackops avatar devblackops commented on May 28, 2024 1

This looks to be related to this: http://stackoverflow.com/questions/25314741/stop-execution-of-cmdlet-in-processrecord.

Select-Object -First $n throws a non-public exception called StopUpstreamCommandsException.

That is by design as that is how Select-Object -First $n can stop the pipeline when $n is reached. I was using Select-Object -First 1 to grab the first instance of Get-Module $name -ListAvailable | Sort-Object Version -Descending to get the latest version of a module.

PoshBot is surfacing that exception when it probably shouldn't. I'll have to dig into that.

To fix this particular issue with Install-Plugin I switched to @(Get-Module $name -ListAvailable | Sort-Object Version -Descending)[0]. In my tests, this exception is no longer shown.

This is still a deeper issue as I imagine other functions that use Select-Object -First $n will surface the exception as well. The problem is most likely in the CommandExecutor class where the commands are executed and output (including the Error stream) is collected.

from poshbot.

michaeltlombardi avatar michaeltlombardi commented on May 28, 2024

That looks like a pretty good solution! We're referencing these changes correct?

Should this be closed by those updates and mention made in one of the developer-documentation guides?

from poshbot.

devblackops avatar devblackops commented on May 28, 2024

This can probably be closed but another issue that mentions the larger problem should be created. I'd like to squash the problem as I think it it could be a cause of frequent issues going forward as people write perfectly valid plugins and come up against this.

from poshbot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.