Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
xornotx committed Jun 18, 2024
1 parent e132898 commit 9ea1935
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ DOWNLOAD_FOLDER="./contributions"

# Ensure dependencies are installed
command -v curl >/dev/null 2>&1 || { echo >&2 "curl is required but it is not installed. Aborting."; exit 1; }
command -v xmllint >/dev/null 2>&1 || { echo >&2 "xmllint is required but it is installed. Aborting."; exit 1; }
command -v shasum >/dev/null 2>&1 || { echo >&2 "shasum is required but it is installed. Aborting."; exit 1; }
command -v awk >/dev/null 2>&1 || { echo >&2 "awk is required but it is installed. Aborting."; exit 1; }
command -v xmllint >/dev/null 2>&1 || { echo >&2 "xmllint is required but it is not installed. Aborting."; exit 1; }
command -v shasum >/dev/null 2>&1 || { echo >&2 "shasum is required but it is not installed. Aborting."; exit 1; }
command -v awk >/dev/null 2>&1 || { echo >&2 "awk is required but it is not installed. Aborting."; exit 1; }

# Fetch the list of objects in the S3 bucket
echo "Fetching list of objects from S3 bucket..."
Expand Down

0 comments on commit 9ea1935

Please sign in to comment.