Is there a setting to be able to log colorized output from my runs? Many of my build steps output colorized text when run outside of Drone, but nothing is colorized when either drone exec
'd or in the browser.
Drone fully supports colors, however, it is important to understand your build is running in non-interactive mode (stdin closed) and many tools will disable colors in non-interactive mode. In this case, you may want to consider force-enabling colors, if your tools allow.
Ah, you’re right. Just need to add a bunch of --color flags everywhere. Thanks for the quick reply!