Commit d336cbc

mo khan <mo@mokhan.ca>
2021-06-30 23:29:11
feat: use debian sid
1 parent 30e5609
Changed files (3)
etc/apt/sources.list
@@ -0,0 +1,2 @@
+deb https://deb.debian.org/debian/ unstable main contrib non-free
+deb-src https://deb.debian.org/debian/ unstable main contrib non-free
apt.list
@@ -1,3 +1,4 @@
+apt-transport-https
 exuberant-ctags
 fd-find
 fzf
install.sh
@@ -31,6 +31,8 @@ function dotfile()
 function install_pkgs()
 {
   if [[ -n $CODESPACES ]]; then
+    mv /etc/apt/sources.list /etc/apt/sources.list.bak
+    cp -f ./etc/apt/sources.list /etc/apt/sources.list
     apt-get update -y
     # shellcheck disable=SC2046
     apt-get install -y --no-install-recommends $(tr '\n' ' ' < ./apt.list)