Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daac60e commit 024325eCopy full SHA for 024325e
.circleci/config.yml
@@ -193,14 +193,18 @@ jobs:
193
- run:
194
name: Check JupyterLab build artifacts
195
command: |
196
- diff -qr plotly/labextension-tmp/ plotly/labextension/ | grep -v '^Only in' > build_diff.txt
+ 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
201
202
if [ -s build_diff.txt ]; then
- echo "Build artifacts differ from committed files:"
203
+ echo "❌ Build artifacts differ from committed files:"
204
cat build_diff.txt
205
exit 1
206
else
- echo "Build artifacts are identical to committed files."
207
+ echo "✅ Build artifacts are identical to committed files."
208
fi
209
210
# Percy
0 commit comments