From 29a81e1dd677cb5e1a92032d12b012d803d2a372 Mon Sep 17 00:00:00 2001 From: Jarmo Isotalo Date: Tue, 30 May 2017 16:32:56 -0700 Subject: [PATCH] Show the diff --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ea34e48..2f2480c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ ], "script": [ "npm run test", - "./node_modules/.bin/prettier --single-quote --no-semi --write `find ./lib -name '*.js'` `find ./bin -name '*.js'` ; echo 'checking if prettier changed something' ; git diff-index --name-only HEAD ; git diff-index --quiet HEAD && echo 'ok' || (echo 'pretier modified contents, please run prettier locally and add changes. exitting...' && exit 1)" + "./node_modules/.bin/prettier --single-quote --no-semi --write `find ./lib -name '*.js'` `find ./bin -name '*.js'` ; echo 'checking if prettier changed something' ; git diff-index --name-only HEAD ; git diff HEAD ; git diff-index --quiet HEAD && echo 'ok' || (echo 'pretier modified contents, please run prettier locally and add changes. exitting...' && exit 1)" ], "before_deploy": "npm run pack", "deploy": {