bash - Continue make command even if one operation within fails -


this question has answer here:

i'm looking way continue make command in event of error failure.

i need way of wrapping command doesn't respond exit code 1.

test:     exit 1 ;\     echo 'hi' ;\ 

i need way wrap this:

example:    somecommand && othercommand ;\    echo 'hi' ;\ 

where somecommand can exit 1 (error) , not run othercommand or 0 run othercommand.

prefixing recipe - tells make ignore errors returned line, other thing need run 2 recipes separately.

example:    -somecommand && othercommand    echo 'hi' 

Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -