I'm running screen with the following command:

screen -dms -X buildscript.py

This executes the buildscript.py file and runs it as a daemon. Now, when the build script fails, screen automatically terminates (and I don't get to see the error messages)!

How can I make it so an -X to a script will NOT be terminated if that script fails?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Use wrapper /path/buildscript.sh:

#!/bin/bash
buildscript.py
bash

And command

screen -dms -X buildscript.sh
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.