This commit is contained in:
35C4n0r
2026-05-23 12:58:26 +00:00
parent 3e21d6aa23
commit dcea2fc00a
@@ -51,7 +51,7 @@ function install_dasel() {
printf "Installing dasel from %s\n" "$${url}"
if curl -fsSL "$${url}" -o "$${install_dir}/dasel" && chmod +x "$${install_dir}/dasel"; then
export PATH="$${install_dir}:$PATH"
printf "Installed %s\n" "$(dasel --version)"
printf "Installed %s\n" "$(dasel version)"
else
printf "Error: failed to download dasel\n" >&2
rm -f "$${install_dir}/dasel"
@@ -180,6 +180,8 @@ function write_minimal_default_config() {
optional_config+=$'\n''trust_level = "trusted"'
fi
echo "OPTIONAL CONFIG: $${optional_config}"
merge_toml_config "$${config_path}" "$${optional_config}"
}