We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83db8a2 commit 206f252Copy full SHA for 206f252
.travis.yml
@@ -42,6 +42,12 @@ before_install:
42
script:
43
- if git --no-pager grep --color -n --full-name ' $' -- \*.jl \*.scm \*.c \*.cpp \*.h; then
44
echo "Error trailing whitespace found in source file(s)";
45
+ echo "";
46
+ echo "This can often be fixed with:";
47
+ echo " git rebase --whitespace=fix HEAD~1";
48
+ echo "or";
49
+ echo " git rebase --whitespace=fix master";
50
+ echo "and then a forced push of the correct branch";
51
exit 1;
52
fi
53
- make $BUILDOPTS prefix=/tmp/julia install
0 commit comments