fix: capture-snippet.sh can handle leading whitespaces now (#3249) (#3250)

Signed-off-by: Gorny Krystian <krystian.gorny@wipotec.com>
Co-authored-by: Gorny Krystian <krystian.gorny@wipotec.com>
This commit is contained in:
Krystian G. 2024-09-19 15:15:54 +02:00 committed by GitHub
parent 50016c3172
commit cb0de97bc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -69,6 +69,11 @@ if ! command -v xxd &> /dev/null; then
exit 1
fi
# check if xargs is even installed
if ! command -v xargs &> /dev/null; then
echo "xargs not found. Please install xargs."
exit 1
fi
PATTERN=${SEARCH_FOR:-$VERSION}
@ -116,7 +121,7 @@ while $CONTINUE_LOOP; do
fi
# search for the pattern in the binary file and capture the offset
OFFSET=$(echo "${SELECTED_RESULT}" | cut -d ' ' -f 1)
OFFSET=$(echo "${SELECTED_RESULT}" | xargs | cut -d ' ' -f 1)
if [ -z "$OFFSET" ]; then
echo "Pattern not found."