-
I recently started to use mission-control, and noticed that the banner is always printed when entering the devshell - normally good behaviour, but I also happen to run the dev shell during CI runs, and printing the banner for pretty much every step made my build logs much more verbose than they need to be, and a bit annoying to glance through. See here for an example - just expand any step beyond I could work it around by setting a custom banner that checks the Would it be possible to have an option like I'm happy to open a pull request adding this (possibly with a better option name - I'm not good at naming), if this is something you'd find useful too. I might even be able to name it |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I believe you can already do this using something like: {
mission-control = {config, ...}: {
banner = '''
if [ -z "$CI" ]; then ${config.banner}; fi
''';
};
} |
Beta Was this translation helpful? Give feedback.
I believe you can already do this using something like: