This commit is contained in:
wendrul
2025-04-24 00:04:53 +02:00
parent 39475ff343
commit 0853e8aa95
2 changed files with 3 additions and 3 deletions
@@ -692,7 +692,7 @@ pub fn add_versions_to_requirements_yaml(
);
logs.push_str(
&update_versions("collections", doc, collection_versions)
.map_err(|e| anyhow!("Error updating role versions: {e}"))?,
.map_err(|e| anyhow!("Error updating collection versions: {e}"))?,
);
if !logs.is_empty() {
@@ -8,7 +8,7 @@ use anyhow::anyhow;
use futures::future::try_join_all;
use itertools::Itertools;
use serde::{Deserialize, Serialize};
use serde_json::{json, value::RawValue};
use serde_json::value::RawValue;
use tokio::process::Command;
use uuid::Uuid;
use windmill_common::{
@@ -44,7 +44,7 @@ lazy_static::lazy_static! {
}
const NSJAIL_CONFIG_RUN_ANSIBLE_CONTENT: &str = include_str!("../nsjail/run.ansible.config.proto");
const WINDMILL_ANSIBLE_PASSWORD_FILENAME: &str = ".windmil.ansible_vault_password_file";
const WINDMILL_ANSIBLE_PASSWORD_FILENAME: &str = ".windmill.ansible_vault_password_file";
async fn clone_repo(
repo: &GitRepo,