Skip to content

Commit

Permalink
Handle non postfix path (#15518)
Browse files Browse the repository at this point in the history
Co-authored-by: HenryNguyen5 <[email protected]>
  • Loading branch information
rafaelfelix and HenryNguyen5 authored Dec 10, 2024
1 parent 88a0338 commit cf10ccf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/bin/goreleaser_utils
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ before_hook() {
# linux_arm64, rather than being suffixless on native platforms
if [ "$GOARCH" = "arm64" ]; then
if [ -d "$BIN_DIR/linux_arm64" ]; then
cp "$BIN_DIR/linux_arm64"/chainlink* "$PLUGIN_DIR"
elif [ -d "$BIN_DIR/linux_arm64_v8.0" ]; then
cp "$BIN_DIR/linux_arm64_v8.0"/chainlink* "$PLUGIN_DIR"
else
else
cp "$BIN_DIR"/chainlink* "$PLUGIN_DIR"
fi
# Call patchelf --set-interpreter on all plugins
Expand Down

0 comments on commit cf10ccf

Please sign in to comment.