Remove personal path references from defaults and examples
All checks were successful
continuous-integration/drone/tag Build is passing
All checks were successful
continuous-integration/drone/tag Build is passing
Replace machine-specific paths with generic examples.
This commit is contained in:
parent
9c7823475c
commit
8ab3c15983
@ -39,8 +39,8 @@ Example configuration:
|
|||||||
```toml
|
```toml
|
||||||
# List of paths where to search for projects (git repositories)
|
# List of paths where to search for projects (git repositories)
|
||||||
paths = [
|
paths = [
|
||||||
"~/Work/Projects",
|
"~/Projects",
|
||||||
"~/Work/DECEA/ATD/repos/gitlab.devops.decea.intraer",
|
# "~/work",
|
||||||
]
|
]
|
||||||
|
|
||||||
# Maximum depth to search for .git directories
|
# Maximum depth to search for .git directories
|
||||||
|
|||||||
@ -102,7 +102,7 @@ impl Config {
|
|||||||
paths: vec![
|
paths: vec![
|
||||||
dirs::home_dir()
|
dirs::home_dir()
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
.join("Work/Projects")
|
.join("Projects")
|
||||||
.to_string_lossy()
|
.to_string_lossy()
|
||||||
.to_string(),
|
.to_string(),
|
||||||
],
|
],
|
||||||
|
|||||||
@ -18,9 +18,8 @@
|
|||||||
# Supports ~ for home directory expansion
|
# Supports ~ for home directory expansion
|
||||||
|
|
||||||
paths = [
|
paths = [
|
||||||
"~/Work/Projects",
|
"~/Projects",
|
||||||
"~/Work/DECEA/ATD/repos/gitlab.devops.decea.intraer",
|
# "~/work",
|
||||||
# "~/personal",
|
|
||||||
# "~/opensource",
|
# "~/opensource",
|
||||||
# "~/clients/company-name",
|
# "~/clients/company-name",
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user