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

Merge pull request #7 from tsirysndr/fix/tangled-url

fix incorrect tangled git url

authored by tsiry-sandratraina.com and committed by

GitHub 3a6d21e9 048cc576

+1 -1
+1 -1
src/cmd/setup.rs
··· 95 95 96 96 if config_path.starts_with("tangled:") { 97 97 let repo = &config_path["tangled:".len()..]; 98 - return Ok(format!("https://tangled.sh/{}.git", repo)); 98 + return Ok(format!("https://tangled.sh/{}", repo)); 99 99 } 100 100 101 101 Ok(config_path.to_string())