Giter Site home page Giter Site logo

Comments (4)

gwicksted avatar gwicksted commented on July 20, 2024

Will investigate further

from grunt-exec.

gwicksted avatar gwicksted commented on July 20, 2024

Thrown errors are now output by default (when no callback provided). The thrown error would at least give a hint at what the cause of the exit was.

from grunt-exec.

heliodor avatar heliodor commented on July 20, 2024

@gwicksted, turns out the problem is that when you run ps aux | grep "...", the grep command will show up in the results alongside the command searched for. The kill command will fail with something like kill: 92342: No such process.

grunt-exec version 1.0.1 does not show the error (even when grunt is run with -vvvvv):

Running "exec:dist_dev_ks" (exec) task
Verifying property exec.dist_dev_ks exists in config...OK
File: [no files]
Max stdout+stderr size is 204800 bytes

ps aux | grep python | grep runserver | grep 8002 | awk '{print $2}' | xargs kill
Expecting exit code 0
>> Exited with code: 0.
>> Error executing child process: Error: Command failed: ps aux | grep python | grep runserver | grep 8002 | awk '{print $2}' | xargs kill
Warning: Task "exec:dist_dev_ks" failed. Use --force to continue.

Aborted due to warnings.

from grunt-exec.

gwicksted avatar gwicksted commented on July 20, 2024

@heliodor thank you for re-testing this! I'm sure we've all hit that before with ps aux | grep ...

A simple trick is placing the grep regex in quotes and including a character group around the first character eg. ps aux | grep "[p]ython will cause grep to match "python" but not "grep [p]ython" since p is followed by the literal ]. See [http://unix.stackexchange.com/questions/74185/how-can-i-prevent-grep-from-showing-up-in-ps-results](stack exchange) for alternative solutions.

Unfortunately, that error is all we get back from node regarding the error. If you set stdout and/or stderr to true in the grunt-exec options, it may show kill's output as well which I'm sure would be beneficial.

from grunt-exec.

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.