From affb365ec8b8bcdbf790c5ca3dc049af8c1dcb3b Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Mon, 29 Jul 2024 08:50:38 -0400 Subject: [PATCH] build --- usr/share/usability-misc/dist-installer-cli-standalone | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/usr/share/usability-misc/dist-installer-cli-standalone b/usr/share/usability-misc/dist-installer-cli-standalone index 4867c02..73df0b6 100755 --- a/usr/share/usability-misc/dist-installer-cli-standalone +++ b/usr/share/usability-misc/dist-installer-cli-standalone @@ -3238,7 +3238,7 @@ Additional details: get_version(){ log notice "Version Detection: Detecting guest version..." if test -n "${guest_version:-}"; then - log notice "Version Detection: 'skipped' - Autodetection using API not required via '--dry_run' or '--dev' option." + log notice "Version Detection: 'skipped' - Autodetection using API not required via '--guest-version', '--dry-run' or '--dev' option." return 0 fi log info "Version Detection: Acquiring guest version using API..." @@ -3944,7 +3944,6 @@ File name: ## Set default values for variables. set_default(){ - ## Options directory_prefix="${HOME}/dist-installer-cli-download" guest=whonix @@ -4249,14 +4248,14 @@ parse_opt(){ fi if test "${dev}" = "1"; then if test -z "${guest_version}"; then - log notice "Version Detection: Setting dev software version." + log notice "Version Detection: Setting development testing empty software version via '--dev' option." guest_version="17.0.3.4" fi fi if test "${dry_run}" = "1"; then if test -z "${guest_version}"; then - log notice "Simulation: dry_run set, commands will be printed but not executed." - log notice "Version Detection: Using simulated software version because of dry_run." + log notice "Simulation: commands will be printed but not executed via '--dry-run' option." + log notice "Version Detection: Using simulated software version via '--dry-run' option." guest_version="17.0.3.4" fi fi