We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 812cfca commit dcc6ce8Copy full SHA for dcc6ce8
1 file changed
contrib/ez-apt-install.sh
@@ -75,9 +75,9 @@ fi
75
# (a bit dirty because it will recomment existing commented lines, but does no harm)
76
readarray -d '' apt_files < <(find /etc/apt -type f -name "*.list" -print0)
77
for file in "${apt_files[@]}"; do
78
- if grep -q archive.turnkeylinux.org "$file"; then
+ if grep -q "tkl-$deb_dist-main" "$file"; then
79
info "backing up $file"
80
- sed -i.backup "/archive.turnkeylinux.org/ s|^|#|g" "$file"
+ sed -i.bak "/archive.turnkeylinux.org/ s|^|#|g" "$file"
81
fi
82
done
83
0 commit comments