Last active
March 17, 2017 05:16
-
-
Save duykhoa/36ca0c9a5dc8d9b7a51155c6addd39b2 to your computer and use it in GitHub Desktop.
COVERAGE PATCH
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -n "$ZSH_VERSION" ]; then | |
echo 'zsh env' | |
echo 'export COVERAGE=true' >> ~/.zshrc | |
elif [ -n "$BASH_VERSION" ]; then | |
echo 'bash env' | |
echo 'export COVERAGE=true' >> ~/.bashrc | |
else | |
echo 'You need to run `COVERAGE=true rspec` each time' | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment