diff options
author | crupest <crupest@outlook.com> | 2023-11-21 19:55:36 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-11-21 19:56:11 +0800 |
commit | 0803f356e5bce6a7849908eb94d5565c4756e849 (patch) | |
tree | 9808dd8563771b3d1058386578b5d1d29a78a99a /docker/debian-dev/bootstrap/apt-source/replace-http.bash | |
parent | b111e8f7e87d4ea5922eaa4aa4c96d3d3c78a5f6 (diff) | |
download | crupest-0803f356e5bce6a7849908eb94d5565c4756e849.tar.gz crupest-0803f356e5bce6a7849908eb94d5565c4756e849.tar.bz2 crupest-0803f356e5bce6a7849908eb94d5565c4756e849.zip |
docker(debian-dev): improve apt-source.
Diffstat (limited to 'docker/debian-dev/bootstrap/apt-source/replace-http.bash')
-rwxr-xr-x | docker/debian-dev/bootstrap/apt-source/replace-http.bash | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/docker/debian-dev/bootstrap/apt-source/replace-http.bash b/docker/debian-dev/bootstrap/apt-source/replace-http.bash index b5f6cca..fae082a 100755 --- a/docker/debian-dev/bootstrap/apt-source/replace-http.bash +++ b/docker/debian-dev/bootstrap/apt-source/replace-http.bash @@ -2,9 +2,6 @@ set -e -apt-get update -apt-get install -y apt-transport-https ca-certificates - -sed -i.bak 's/https?/https/' /etc/apt/sources.list -apt-get update - +echo "Backup /etc/apt/sources.list to /etc/apt/sources.list.bak." +echo "Replace http to https in /etc/apt/sources.list." +sed -i.bak 's/https\?/https/' /etc/apt/sources.list |