From 5411c42c3d1dfe7c8454f4c966b35f829f0a2f40 Mon Sep 17 00:00:00 2001 From: Pl4gue Date: Mon, 25 Dec 2017 15:13:42 +0100 Subject: [PATCH] Revert "add linter command" This reverts commit 16a93ca370473f9807edfa1062371360fe5402e0. --- .travis/push.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis/push.sh b/.travis/push.sh index 8a3e2a734..e3483a676 100755 --- a/.travis/push.sh +++ b/.travis/push.sh @@ -1,3 +1,5 @@ +#!/bin/sh + setup_git() { git config --global user.email "travis@travis-ci.org" git config --global user.name "Travis CI" @@ -6,11 +8,6 @@ setup_git() { commit_website_files() { git checkout master git add * - if [[ $(( $TRAVIS_BUILD_NUMBER % 5 )) == 0 ]]; then - n = $(( ($TRAVIS_BUILD_NUMBER-270)/5)) - npm run linter - echo "Linting build: $n" - fi git commit --message "Travis build: $TRAVIS_BUILD_NUMBER" }