Skip to content

Commit 7953318

Browse files
Fix a typo shared among many installation scripts (#1006)
* Fix a typo shared among many installation scripts `retring` -> `retrying` * Bump patch versions
1 parent 05a4cbf commit 7953318

14 files changed

Lines changed: 17 additions & 17 deletions

src/git-lfs/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "git-lfs",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"name": "Git Large File Support (LFS)",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs",
66
"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.",

src/git-lfs/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ receive_gpg_keys() {
8282
echo "(*) Downloading GPG key..."
8383
( echo "${keys}" | xargs -n 1 gpg --recv-keys) 2>&1 && gpg_ok="true"
8484
if [ "${gpg_ok}" != "true" ]; then
85-
echo "(*) Failed getting key, retring in 10s..."
85+
echo "(*) Failed getting key, retrying in 10s..."
8686
(( retry_count++ ))
8787
sleep 10s
8888
fi

src/git/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "git",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"name": "Git (from source)",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git",
66
"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.",

src/git/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ receive_gpg_keys() {
8484
echo "(*) Downloading GPG key..."
8585
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
8686
if [ "${gpg_ok}" != "true" ]; then
87-
echo "(*) Failed getting key, retring in 10s..."
87+
echo "(*) Failed getting key, retrying in 10s..."
8888
(( retry_count++ ))
8989
sleep 10s
9090
fi

src/github-cli/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "github-cli",
3-
"version": "1.0.11",
3+
"version": "1.0.12",
44
"name": "GitHub CLI",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/github-cli",
66
"description": "Installs the GitHub CLI. Auto-detects latest version and installs needed dependencies.",

src/github-cli/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ receive_gpg_keys() {
4949
echo "(*) Downloading GPG key..."
5050
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
5151
if [ "${gpg_ok}" != "true" ]; then
52-
echo "(*) Failed getting key, retring in 10s..."
52+
echo "(*) Failed getting key, retrying in 10s..."
5353
(( retry_count++ ))
5454
sleep 10s
5555
fi

src/python/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "python",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"name": "Python",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/python",
66
"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.",

src/python/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ receive_gpg_keys() {
157157
echo "(*) Downloading GPG key..."
158158
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
159159
if [ "${gpg_ok}" != "true" ]; then
160-
echo "(*) Failed getting key, retring in 10s..."
160+
echo "(*) Failed getting key, retrying in 10s..."
161161
(( retry_count++ ))
162162
sleep 10s
163163
fi
@@ -202,7 +202,7 @@ receive_gpg_keys_centos7() {
202202
fi
203203
done
204204
if [ "${gpg_ok}" != "true" ]; then
205-
echo "(*) Failed getting key, retring in 10s..."
205+
echo "(*) Failed getting key, retrying in 10s..."
206206
(( retry_count++ ))
207207
sleep 10s
208208
fi

src/ruby/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "ruby",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"name": "Ruby (via rvm)",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/ruby",
66
"description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.",

src/ruby/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ receive_gpg_keys() {
9494
echo "(*) Downloading GPG key..."
9595
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
9696
if [ "${gpg_ok}" != "true" ]; then
97-
echo "(*) Failed getting key, retring in 10s..."
97+
echo "(*) Failed getting key, retrying in 10s..."
9898
(( retry_count++ ))
9999
sleep 10s
100100
fi

0 commit comments

Comments
 (0)