Skip to content

Commit

Permalink
🔀 Merge branch 'ladislas/bugfix/compare-files-base_head' into develop
Browse files Browse the repository at this point in the history
* ladislas/bugfix/compare-files-base_head:
  🩹 (workflows): Fix issue with base/head bin comparision
  • Loading branch information
ladislas committed Jan 18, 2022
2 parents e037ef6 + 3583a95 commit 14b9d50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/compare_files/compare_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ for target in "${all_targets[@]}"; do

echo -n "| :heavy_check_mark: " >> $GITHUB_ENV

if ! output=$(diff $HEAD_DIR/$target_name.bin $HEAD_DIR/$target_name.bin 2>/dev/null); then
if ! output=$(diff $BASE_DIR/$target_name.bin $HEAD_DIR/$target_name.bin 2>/dev/null); then
echo -n "| :x: " >> $GITHUB_ENV
else
echo -n "| :white_check_mark: " >> $GITHUB_ENV
Expand Down

0 comments on commit 14b9d50

Please sign in to comment.