File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,15 +42,15 @@ jobs:
42
42
find plotly/labextension-tmp/static -type f -exec sha256sum {} \; | awk '{print $1}' | sort > old_hashes.txt
43
43
44
44
# 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
46
46
cat content_diff.txt
47
47
48
48
# Remove the "load" line from both package.json files before comparing
49
49
grep -v '"load": "static/' plotly/labextension/package.json > pkg1.json
50
50
grep -v '"load": "static/' plotly/labextension-tmp/package.json > pkg2.json
51
51
52
52
# Compare stripped versions
53
- diff pkg1.json pkg2.json > package_json_diff.txt || true
53
+ diff pkg1.json pkg2.json > package_json_diff.txt
54
54
55
55
# 5. Final check
56
56
if [ -s content_diff.txt ] || [ -s package_json_diff.txt ]; then
You can’t perform that action at this time.
0 commit comments