diff options
author | eitsupi <50911393+eitsupi@users.noreply.github.com> | 2022-10-11 01:33:01 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 01:33:01 +0300 |
commit | a8cb375d460840bbf8c91599d16fc87d9ee8b996 (patch) | |
tree | 73dd647775325582c17a452816457f5cec82004d /src/git | |
parent | 065b5ec9e19d4f289a070c3d5337696fd2394dc0 (diff) |
Ensure remove apt-update cache at the beginning and end of the scripts (#210)
* remove apt lists
* bump versions
Diffstat (limited to 'src/git')
-rw-r--r-- | src/git/devcontainer-feature.json | 2 | ||||
-rwxr-xr-x | src/git/install.sh | 19 |
2 files changed, 16 insertions, 5 deletions
diff --git a/src/git/devcontainer-feature.json b/src/git/devcontainer-feature.json index 6f0e717..c39ffbd 100644 --- a/src/git/devcontainer-feature.json +++ b/src/git/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "git", - "version": "1.0.3", + "version": "1.0.4", "name": "Git (from source)", "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.", diff --git a/src/git/install.sh b/src/git/install.sh index 507599e..153b4e1 100755 --- a/src/git/install.sh +++ b/src/git/install.sh @@ -17,6 +17,9 @@ keyserver hkp://keyserver.pgp.com" set -e +# Clean up +rm -rf /var/lib/apt/lists/* + if [ "$(id -u)" -ne 0 ]; then echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.' exit 1 @@ -76,8 +79,10 @@ receive_gpg_keys() { apt_get_update() { - echo "Running apt-get update..." - apt-get update -y + if [ "$(find /var/lib/apt/lists/* | wc -l)" = "0" ]; then + echo "Running apt-get update..." + apt-get update -y + fi } # Checks if packages are installed and installs them if not @@ -96,12 +101,16 @@ export DEBIAN_FRONTEND=noninteractive # If the os provided version is "good enough", just install that. if [ ${GIT_VERSION} = "os-provided" ] || [ ${GIT_VERSION} = "system" ]; then if type git > /dev/null 2>&1; then - echo "Detected existing system install: $(git version)" - exit 0 + echo "Detected existing system install: $(git version)" + # Clean up + rm -rf /var/lib/apt/lists/* + exit 0 fi echo "Installing git from OS apt repository" check_packages git + # Clean up + rm -rf /var/lib/apt/lists/* exit 0 fi @@ -114,6 +123,7 @@ if ([ "${GIT_VERSION}" = "latest" ] || [ "${GIT_VERSION}" = "lts" ] || [ "${GIT_ apt-get update apt-get -y install --no-install-recommends git rm -rf "/tmp/tmp-gnupg" + rm -rf /var/lib/apt/lists/* exit 0 fi @@ -143,4 +153,5 @@ echo "Building..." cd /tmp/git-${GIT_VERSION} make -s prefix=/usr/local all && make -s prefix=/usr/local install 2>&1 rm -rf /tmp/git-${GIT_VERSION} +rm -rf /var/lib/apt/lists/* echo "Done!" |