fix(#61): Format path to clone into correctly
Some checks failed
ci/woodpecker/cron/cron-docker-builder Pipeline failed
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
Some checks failed
ci/woodpecker/cron/cron-docker-builder Pipeline failed
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
Closes kemitix/git-next#61 `GitDir` was being inserted into the command string as "GitDir(\"data/default/foo\")".
This commit is contained in:
parent
3dfbd44b37
commit
555aada7e9
4 changed files with 20 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -19,5 +19,6 @@ Cargo.lock
|
||||||
|
|
||||||
# git-next runtime files
|
# git-next runtime files
|
||||||
git-next-server.toml
|
git-next-server.toml
|
||||||
|
data/
|
||||||
.git-next.toml
|
.git-next.toml
|
||||||
.envrc
|
.envrc
|
||||||
|
|
|
@ -418,7 +418,7 @@ impl GitDir {
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for GitDir {
|
impl std::fmt::Display for GitDir {
|
||||||
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
||||||
write!(f, "{self:?}")
|
write!(f, "{}", &self.0.display())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl From<&str> for GitDir {
|
impl From<&str> for GitDir {
|
||||||
|
|
|
@ -132,3 +132,13 @@ fn test_repo_config_load() -> Result<(), OneOf<(toml::de::Error,)>> {
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn gitdir_should_display_as_pathbuf() {
|
||||||
|
//given
|
||||||
|
let gitdir = GitDir::from("foo/dir");
|
||||||
|
//when
|
||||||
|
let result = format!("{}", gitdir);
|
||||||
|
//then
|
||||||
|
assert_eq!(result, "foo/dir");
|
||||||
|
}
|
||||||
|
|
|
@ -6,21 +6,25 @@ use crate::server::{
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn clone(repo_details: &RepoDetails, gitdir: GitDir) -> Result<(), RepoCloneError> {
|
pub fn clone(repo_details: &RepoDetails, gitdir: GitDir) -> Result<(), RepoCloneError> {
|
||||||
|
// TODO: (#60) If directory already exists, validate it is git repo (e.g. is a git repo,
|
||||||
|
// matches the same origin)
|
||||||
let origin = repo_details.origin();
|
let origin = repo_details.origin();
|
||||||
// INFO: never log the command as it contains the API token within the 'origin'
|
// INFO: never log the command as it contains the API token within the 'origin'
|
||||||
use secrecy::ExposeSecret;
|
use secrecy::ExposeSecret;
|
||||||
let command: secrecy::Secret<String> = format!(
|
let command: secrecy::Secret<String> = format!(
|
||||||
"/usr/bin/git clone --bare -- {} {:?}",
|
"/usr/bin/git clone --bare -- {} {}",
|
||||||
origin.expose_secret(),
|
origin.expose_secret(),
|
||||||
gitdir
|
gitdir
|
||||||
)
|
)
|
||||||
.into();
|
.into();
|
||||||
let repo_name = &repo_details.repo_alias;
|
let repo_name = &repo_details.repo_alias;
|
||||||
info!("Cloning {repo_name} to {gitdir}");
|
info!(
|
||||||
|
%repo_name,
|
||||||
|
%gitdir,
|
||||||
|
"Cloning"
|
||||||
|
);
|
||||||
match gix::command::prepare(command.expose_secret())
|
match gix::command::prepare(command.expose_secret())
|
||||||
.with_shell_allow_argument_splitting()
|
.with_shell_allow_argument_splitting()
|
||||||
.stdout(std::process::Stdio::null())
|
|
||||||
.stderr(std::process::Stdio::null())
|
|
||||||
.spawn()
|
.spawn()
|
||||||
{
|
{
|
||||||
Ok(mut child) => match child.wait() {
|
Ok(mut child) => match child.wait() {
|
||||||
|
|
Loading…
Reference in a new issue