diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-01-17 20:34:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-17 20:34:53 +0300 |
commit | 58b8fe093da506595118076cedbdeee4aa6d20b0 (patch) | |
tree | c9f0665461e66b57419d82bbccc4ec5c5669f147 /src/docker-in-docker/install.sh | |
parent | 79588ef3da9abb2b536583130653b05030e8e5a6 (diff) |
Fix typos in comments / *.md (#396)
Diffstat (limited to 'src/docker-in-docker/install.sh')
-rwxr-xr-x | src/docker-in-docker/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/docker-in-docker/install.sh b/src/docker-in-docker/install.sh index d351121..dff1139 100755 --- a/src/docker-in-docker/install.sh +++ b/src/docker-in-docker/install.sh @@ -137,7 +137,7 @@ export DEBIAN_FRONTEND=noninteractive # Fetch host/container arch. architecture="$(dpkg --print-architecture)" -# Check if distro is suppported +# Check if distro is supported if [ "${USE_MOBY}" = "true" ]; then # 'get_common_setting' allows attribute to be updated remotely get_common_setting DOCKER_MOBY_ARCHIVE_VERSION_CODENAMES @@ -305,7 +305,7 @@ if [ -f "/usr/local/share/docker-init.sh" ]; then rm -rf /var/lib/apt/lists/* exit 0 fi -echo "docker-init doesnt exist, adding..." +echo "docker-init doesn't exist, adding..." # Add user to the docker group if [ "${ENABLE_NONROOT_DOCKER}" = "true" ]; then |