Skip to content
Merged
Show file tree
Hide file tree
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 Dockerfile-scraper
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:jammy

RUN apt-get update \
&& apt-get upgrade -y --no-install-recommends \
&& apt-get install -y \
&& apt-get install -y --no-install-recommends \
curl \
default-jdk \
jq \
Expand Down
6 changes: 3 additions & 3 deletions scripts/sbom_scraper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ log() {
TOOL_NAME="https://github.com/jitsuin-inc/archivist-shell sbom_scraper.sh"
#
# Set this value and merge the change just before release
TOOL_VERSION="v0.6.0"
TOOL_VERSION="v0.6.2"
TOOL_VENDOR="RKVST Inc"
TOOL_HASH_ALG=SHA-256
TOOL_HASH_CONTENT=$(shasum -a 256 "$0" | cut -d' ' -f1)
Expand Down Expand Up @@ -376,7 +376,7 @@ ET.SubElement(author, 'email').text = '$AUTHOR_EMAIL'

indent(root)

et.write("$PATCHED_OUTPUT", encoding='unicode', xml_declaration=True, default_namespace='')
et.write("$PATCHED_OUTPUT", encoding='unicode', xml_declaration=True, default_namespace='', short_empty_elements=False)
END
)

Expand Down Expand Up @@ -533,7 +533,7 @@ for f in ('licenses', 'copyright', 'cpe', 'purl', 'swid', 'modified', 'pedigree'
component.append(val)

indent(root)
et.write("$PATCHED_OUTPUT", encoding='unicode', xml_declaration=True, default_namespace='')
et.write("$PATCHED_OUTPUT", encoding='unicode', xml_declaration=True, default_namespace='', short_empty_elements=False)
END
)
fi
Expand Down