Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion easybuild/scripts/findUpdatedEcs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function checkModule {
printError "=== Did not find new EC $ec_filename"
elif [[ ! -e "$ec_new" ]]; then
printError "=== Found multiple new ECs: $ec_new"
elif ! out=$(diff -u "$ec_installed" "$ec_new"); then
elif ! out=$(diff -B -u <(sed '/^# Build statistics/,$d' $ec_installed | grep -v "# Built with") "$ec_new"); then
if ((short == 1)); then
basename "$ec_installed"
else
Expand Down
Loading