From b3312f8eb4f8a1b47e73b0810d846a1b642e0d91 Mon Sep 17 00:00:00 2001 From: zenobit Date: Wed, 19 Feb 2025 14:57:52 +0100 Subject: [PATCH] test nevim --- quickget | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/quickget b/quickget index df3e437..2d9eeb1 100755 --- a/quickget +++ b/quickget @@ -598,6 +598,10 @@ EOF fi # OS specific tweaks + . "actions/${OS}" + if [ ! "specific_tweaks" 2>/dev/null ]; then + echo $"#TODO: Nothing special" + fi specific_tweaks || echo $"#TODO: Nothing special" if [ "${OS}" == "ubuntu" ] && [[ ${RELEASE} == *"daily"* ]]; then # Minimum to install lobster testing is 18GB but 32GB are allocated for headroom @@ -657,7 +661,10 @@ function create_vm() { fi # shellcheck disable=SC2076 - distro_specific || echo $"#TODO: Nothing special" + . "actions/${OS}" + if [ ! "distro_specific" 2>/dev/null ]; then + echo $"#TODO: Nothing special" + fi make_vm_config "${ISO}" }