File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,15 +42,15 @@ jobs:
4242 find plotly/labextension-tmp/static -type f -exec sha256sum {} \; | awk '{print $1}' | sort > old_hashes.txt
4343
4444 # 2. Compare the sorted content hashes
45- diff old_hashes.txt new_hashes.txt > content_diff.txt || true
45+ diff old_hashes.txt new_hashes.txt > content_diff.txt
4646 cat content_diff.txt
4747
4848 # Remove the "load" line from both package.json files before comparing
4949 grep -v '"load": "static/' plotly/labextension/package.json > pkg1.json
5050 grep -v '"load": "static/' plotly/labextension-tmp/package.json > pkg2.json
5151
5252 # Compare stripped versions
53- diff pkg1.json pkg2.json > package_json_diff.txt || true
53+ diff pkg1.json pkg2.json > package_json_diff.txt
5454
5555 # 5. Final check
5656 if [ -s content_diff.txt ] || [ -s package_json_diff.txt ]; then
You can’t perform that action at this time.
0 commit comments