vote up 0 vote down star

When using topfunky's RStakeout, the color in the result of the spec command is lost. This happens even when adding the --color flag.

flag

1 Answer

vote up 1 vote down check

You have to set the environment variable AUTOTEST to true. Spec detects whether it is being run by a process and disables color if it is (to make the output easier to parse).

To set the environment variable in bash:

export AUTOTEST=true

or in fish:

set -x AUTOTEST true

(the -x exports the variable)

link|flag

Your Answer

Get an OpenID
or

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