diff options
author | Sam Chudnick <sam@chudnick.com> | 2021-12-26 15:39:06 -0500 |
---|---|---|
committer | Sam Chudnick <sam@chudnick.com> | 2021-12-26 15:39:06 -0500 |
commit | 23d6e54e567abb0dd1f905b4f68c2e3792d001c4 (patch) | |
tree | 8e4c76ba32e809083435e5bdf0ee9ca24bf0d40a | |
parent | b25545531c88b497db141d1c5d4a351691e36253 (diff) |
Fixed pattern issue with http->https sed command
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ | |||
4 | source deploy.conf | 4 | source deploy.conf |
5 | 5 | ||
6 | # Change apt sources to use https | 6 | # Change apt sources to use https |
7 | sed -i "s/http/https/" /etc/apt/sources.list | 7 | sed -i "s/http:/https:/" /etc/apt/sources.list |
8 | 8 | ||
9 | [ -n $BACKPORTS ] && echo "deb https://deb.debian.org/debian/ bullseye-backports main" >> \ | 9 | [ -n $BACKPORTS ] && echo "deb https://deb.debian.org/debian/ bullseye-backports main" >> \ |
10 | /etc/apt/sources.list | 10 | /etc/apt/sources.list |