Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 024325e

Browse files
committed
Add debugging statements to the diff checker
1 parent daac60e commit 024325e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.circleci/config.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,14 +193,18 @@ jobs:
193193
- run:
194194
name: Check JupyterLab build artifacts
195195
command: |
196-
diff -qr plotly/labextension-tmp/ plotly/labextension/ | grep -v '^Only in' > build_diff.txt
196+
diff -qr plotly/labextension-tmp/ plotly/labextension/ | grep -v '^Only in' > build_diff.txt || true
197+
198+
ls -l build_diff.txt
199+
wc -l build_diff.txt
200+
cat build_diff.txt
197201
198202
if [ -s build_diff.txt ]; then
199-
echo "Build artifacts differ from committed files:"
203+
echo "Build artifacts differ from committed files:"
200204
cat build_diff.txt
201205
exit 1
202206
else
203-
echo "Build artifacts are identical to committed files."
207+
echo "Build artifacts are identical to committed files."
204208
fi
205209
206210
# Percy

0 commit comments

Comments
 (0)