aboutsummaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorRoman Ivanov <ivanov-jr@mail.ru>2017-01-05 06:00:46 -0800
committerRoman Ivanov <ivanov-jr@mail.ru>2017-01-05 06:00:52 -0800
commitfa2f05a53390261730f4bfcae15cad067ce7bcb5 (patch)
tree4fd6c1204c174aaa958418e57f9ce73fc33b5358 /.ci
parentdb47f559628536b7d39b4cf55532b67a77787236 (diff)
downloadcheckstyle-fa2f05a53390261730f4bfcae15cad067ce7bcb5.tar.gz
minor: fix for intelijidea violation for tabs usage
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/travis/checkchmod.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/travis/checkchmod.sh b/.ci/travis/checkchmod.sh
index 35a8213e8..ae1a88dd6 100755
--- a/.ci/travis/checkchmod.sh
+++ b/.ci/travis/checkchmod.sh
@@ -4,7 +4,7 @@ set -e
CHMOD=$(find -type f -not -path '*/\.git/*' -a -type f -not -name '*.sh' -a \( -type d -not -perm 775 -o -type f -not -perm 664 \))
if [[ ! -z $CHMOD ]]; then
- echo "Expected mode for non '.sh' files is 664.";
+ echo "Expected mode for non '.sh' files is 664.";
echo "Files that violates this rule:"
for NAMEFILE in $CHMOD
do