Unverified Commit 7953318c authored by Richard Höchenberger's avatar Richard Höchenberger Committed by GitHub

Fix a typo shared among many installation scripts (#1006)

* Fix a typo shared among many installation scripts

`retring` -> `retrying`

* Bump patch versions
parent 05a4cbf9
{ {
"id": "git-lfs", "id": "git-lfs",
"version": "1.2.0", "version": "1.2.1",
"name": "Git Large File Support (LFS)", "name": "Git Large File Support (LFS)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs",
"description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.", "description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.",
......
...@@ -82,7 +82,7 @@ receive_gpg_keys() { ...@@ -82,7 +82,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg --recv-keys) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg --recv-keys) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
......
{ {
"id": "git", "id": "git",
"version": "1.2.0", "version": "1.2.1",
"name": "Git (from source)", "name": "Git (from source)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/git",
"description": "Install an up-to-date version of Git, built from source as needed. Useful for when you want the latest and greatest features. Auto-detects latest stable version and installs needed dependencies.", "description": "Install an up-to-date version of Git, built from source as needed. Useful for when you want the latest and greatest features. Auto-detects latest stable version and installs needed dependencies.",
......
...@@ -84,7 +84,7 @@ receive_gpg_keys() { ...@@ -84,7 +84,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
......
{ {
"id": "github-cli", "id": "github-cli",
"version": "1.0.11", "version": "1.0.12",
"name": "GitHub CLI", "name": "GitHub CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/github-cli", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/github-cli",
"description": "Installs the GitHub CLI. Auto-detects latest version and installs needed dependencies.", "description": "Installs the GitHub CLI. Auto-detects latest version and installs needed dependencies.",
......
...@@ -49,7 +49,7 @@ receive_gpg_keys() { ...@@ -49,7 +49,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
......
{ {
"id": "python", "id": "python",
"version": "1.6.1", "version": "1.6.2",
"name": "Python", "name": "Python",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/python", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/python",
"description": "Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.", "description": "Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.",
......
...@@ -157,7 +157,7 @@ receive_gpg_keys() { ...@@ -157,7 +157,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
...@@ -202,7 +202,7 @@ receive_gpg_keys_centos7() { ...@@ -202,7 +202,7 @@ receive_gpg_keys_centos7() {
fi fi
done done
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
......
{ {
"id": "ruby", "id": "ruby",
"version": "1.2.1", "version": "1.2.2",
"name": "Ruby (via rvm)", "name": "Ruby (via rvm)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/ruby", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/ruby",
"description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.", "description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.",
......
...@@ -94,7 +94,7 @@ receive_gpg_keys() { ...@@ -94,7 +94,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
......
{ {
"id": "terraform", "id": "terraform",
"version": "1.3.6", "version": "1.3.7",
"name": "Terraform, tflint, and TFGrunt", "name": "Terraform, tflint, and TFGrunt",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/terraform", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/terraform",
"description": "Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects latest version and installs needed dependencies.", "description": "Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects latest version and installs needed dependencies.",
......
...@@ -72,7 +72,7 @@ receive_gpg_keys() { ...@@ -72,7 +72,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
...@@ -90,7 +90,7 @@ receive_gpg_keys() { ...@@ -90,7 +90,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys --keyserver ${keyserver_ip_address}) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys --keyserver ${keyserver_ip_address}) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
......
...@@ -120,7 +120,7 @@ receive_gpg_keys() { ...@@ -120,7 +120,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
...@@ -165,7 +165,7 @@ receive_gpg_keys_centos7() { ...@@ -165,7 +165,7 @@ receive_gpg_keys_centos7() {
fi fi
done done
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
......
...@@ -85,7 +85,7 @@ receive_gpg_keys() { ...@@ -85,7 +85,7 @@ receive_gpg_keys() {
echo "(*) Downloading GPG key..." echo "(*) Downloading GPG key..."
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true" ( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
if [ "${gpg_ok}" != "true" ]; then if [ "${gpg_ok}" != "true" ]; then
echo "(*) Failed getting key, retring in 10s..." echo "(*) Failed getting key, retrying in 10s..."
(( retry_count++ )) (( retry_count++ ))
sleep 10s sleep 10s
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment