Skip to content

Commit

Permalink
PMM-13487 Fix the use of shasum binary
Browse files Browse the repository at this point in the history
  • Loading branch information
ademidoff committed Dec 10, 2024
1 parent da2cc77 commit d5cf4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/scripts/build-server-rpm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ get_shasum256() {
exit 1
fi

find "$DIR" -type f -print0 | sort -z | xargs -0 sha256sum -a 256 | sha256sum -a 256 | cut -d " " -f1 | cut -c 1-8
find "$DIR" -type f -print0 | sort -z | xargs -0 shasum -a 256 | shasum -a 256 | cut -d " " -f1 | cut -c 1-8
}

is_build_needed() {
Expand Down

0 comments on commit d5cf4db

Please sign in to comment.