mirror of
https://git.alemi.dev/tci.git
synced 2024-11-23 16:44:48 +01:00
fix: cannot call non const from const...
This commit is contained in:
parent
83d4b3cbbc
commit
f6d570fccd
2 changed files with 6 additions and 3 deletions
|
@ -12,6 +12,7 @@ repository = "https://git.alemi.dev/tci.git"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
git2 = "0.18.2"
|
git2 = "0.18.2"
|
||||||
|
lazy_static = "1.4.0"
|
||||||
serde = { version = "1.0.196", features = ["derive"] }
|
serde = { version = "1.0.196", features = ["derive"] }
|
||||||
tempdir = "0.3.7"
|
tempdir = "0.3.7"
|
||||||
thiserror = "1.0.57"
|
thiserror = "1.0.57"
|
||||||
|
|
|
@ -29,7 +29,9 @@ struct TciConfig {
|
||||||
cleanup: Vec<String>,
|
cleanup: Vec<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
const HOME : &str = &std::env::var("HOME").unwrap_or_default();
|
lazy_static::lazy_static!{
|
||||||
|
static ref HOME : String = std::env::var("HOME").unwrap_or_default();
|
||||||
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
// load tci config
|
// load tci config
|
||||||
|
@ -99,7 +101,7 @@ fn tci(cfg: TciConfig) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
fn tci_hook(repo_path: &PathBuf, tci_script: &str) -> Result<(), TciError> {
|
fn tci_hook(repo_path: &PathBuf, tci_script: &str) -> Result<(), TciError> {
|
||||||
// TODO kind of ew but ehh should do its job
|
// TODO kind of ew but ehh should do its job
|
||||||
let mut name = repo_path.to_string_lossy()
|
let mut name = repo_path.to_string_lossy()
|
||||||
.replace(HOME, "");
|
.replace(HOME.as_str(), "");
|
||||||
if name.starts_with('/') {
|
if name.starts_with('/') {
|
||||||
name.remove(0);
|
name.remove(0);
|
||||||
}
|
}
|
||||||
|
@ -124,7 +126,7 @@ fn tci_hook(repo_path: &PathBuf, tci_script: &str) -> Result<(), TciError> {
|
||||||
|
|
||||||
println!("[=] running tci script for repo '{name}'");
|
println!("[=] running tci script for repo '{name}'");
|
||||||
let res = shell(tmp.path().join(tci_script))?;
|
let res = shell(tmp.path().join(tci_script))?;
|
||||||
println!("[:] {}", res.replace("\n", "\n[:]"));
|
println!("[:] {}", res.replace('\n', "\n[:]"));
|
||||||
|
|
||||||
std::env::set_current_dir(repo_path)?;
|
std::env::set_current_dir(repo_path)?;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue