Skip to content

Commit

Permalink
fix: clippy errors in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian May committed Aug 24, 2023
1 parent 5c28fe4 commit 8c53d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fn get_required_repos(jobs: &Jobs, helm_repos: &HelmRepos) -> Vec<HelmRepo> {

async fn helm_add_repos(repos: &[HelmRepo]) -> Result<()> {
// Add these repos
for repo in repos.iter() {
for repo in repos {
helm::add_repo(repo).await?;
}

Expand All @@ -104,7 +104,7 @@ async fn helm_add_repos(repos: &[HelmRepo]) -> Result<()> {

async fn helm_remove_repos_for_jobs(repos: &[HelmRepo]) -> Result<()> {
// Add these repos
for repo in repos.iter() {
for repo in repos {
helm::remove_repo(repo).await?;
}

Expand Down

0 comments on commit 8c53d92

Please sign in to comment.