ent/circleci: fix docs modified check

Reviewed By: a8m

Differential Revision: D16943795

fbshipit-source-id: 7aae23ba56d3c3789a1d636cd3940d29cb0aab75
This commit is contained in:
Alex Snast
2019-08-21 12:06:00 -07:00
committed by Facebook Github Bot
parent 4d79e3d674
commit 277eed5fd3

View File

@@ -48,7 +48,7 @@ jobs:
- run:
name: Checking Docs Modified
command: |
if [[ ! $(git diff master^ --name-only doc/ ]]; then
if [[ ! $(git diff master^ --name-only doc/) ]]; then
echo "docs not modified; no need to deploy"
circleci step halt
fi