Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoverbear committed Jun 20, 2023
1 parent a03cac8 commit a1009a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl NixfrPushCli {
name.clone()
} else {
std::env::var("GITHUB_REPOSITORY")
.wrap_err("Could not determine repository name, pass `--name`, `--mirrored-for`, or set the `GITHUB_REPOSITORY` environment")?
.wrap_err("Could not determine repository name, pass `--name`, `--mirrored-for`, or set the `GITHUB_REPOSITORY` environment formatted like `determinatesystems/nxfr-push`")?
};
let mut owner_and_repository_split = owner_and_repository.split('/');
let project_owner = owner_and_repository_split
Expand Down
2 changes: 1 addition & 1 deletion src/release_metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl ReleaseMetadata {
} => object_id,
gix::head::Kind::Unborn(_) => {
return Err(eyre!(
"Newly initialized repository detected, a commit may be necessary"
"Newly initialized repository detected, at l;east one commit is necessary"
))
}
};
Expand Down

0 comments on commit a1009a3

Please sign in to comment.