Opinionated Android 15+ Linux Terminal Setup
android linux command-line-tools

fix(vscode): fix duplicate vscode apt sources

+3 -1
+3 -1
src/apply.rs
··· 205 205 } 206 206 207 207 run_command("sudo", &["apt-get", "update"]).context("Failed to run apt-get update")?; 208 - if !Path::new("/etc/apt/sources.list.d/vscode.list").exists() { 208 + if !Path::new("/etc/apt/sources.list.d/vscode.list").exists() 209 + && !Path::new("/etc/apt/sources.list.d/vscode.sources").exists() 210 + { 209 211 run_command("sudo", &["apt-get", "install", "-y", "wget", "curl", "gpg"])?; 210 212 run_command( 211 213 "bash",