Skip to content

Commit 2dbb09c

Browse files
committed
Remove extraneous or true
1 parent 48c510c commit 2dbb09c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check-js-build.yml

+2-2
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)