Skip to content

Commit

Permalink
otp: ignore comments in link and vsn files
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Backström (FKA Larsson) <[email protected]>
  • Loading branch information
kikofernandez and garazdawi authored Dec 13, 2024
1 parent 5da77be commit 861f5e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions otp_build
Original file line number Diff line number Diff line change
Expand Up @@ -1061,10 +1061,10 @@ do_download_gdb_tools ()
set_common_vars() {
GDB_TOOLS_INSTALL_PATH="$ERL_TOP/erts/etc/unix/gdb-tools"
GDB_TOOLS_VSN_PATH="$ERL_TOP/make"
GDB_REPO=$(cat "$GDB_TOOLS_VSN_PATH/gdb_tools_link" | tail -n1)
GDB_REPO=$(cat "$GDB_TOOLS_VSN_PATH/gdb_tools_link" | grep -v "^//")

# Version of gdb-tools to download
GDB_TOOLS_VSN=$(cat "$GDB_TOOLS_VSN_PATH/gdb_tools_vsn" | tail -n1)
GDB_TOOLS_VSN=$(cat "$GDB_TOOLS_VSN_PATH/gdb_tools_vsn" | grep -v "^//")

# SHASUM_FORMAT has values: sha256sum, sha1sum, shasum
SHASUM_FORMAT=
Expand Down

0 comments on commit 861f5e5

Please sign in to comment.