From 8bd0cdffa469f1249e693add8de252df9780fcad Mon Sep 17 00:00:00 2001 From: Kay0u Date: Tue, 23 Mar 2021 20:56:44 +0100 Subject: [PATCH] remove awk from install_args parse because it wuks without --- lib/tests_coordination.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tests_coordination.sh b/lib/tests_coordination.sh index 5582b1d..9d3f385 100644 --- a/lib/tests_coordination.sh +++ b/lib/tests_coordination.sh @@ -78,7 +78,7 @@ parse_check_process() { # Looking like domain=foo.com&path=/bar&password=stuff # "Standard" arguments like domain/path will later be overwritten # during tests - local install_args=$( extract_check_process_section "^; Manifest" "^; " $test_serie_rawconf | awk '{print $1}' | tr -d '"' | tr '\n' '&') + local install_args=$( extract_check_process_section "^; Manifest" "^; " $test_serie_rawconf | tr -d '"' | tr '\n' '&') local preinstall_template=$(extract_check_process_section "^; pre-install" "^; " $test_serie_rawconf) local action_infos=$( extract_check_process_section "^; Actions" "^; " $test_serie_rawconf) local configpanel_infos=$( extract_check_process_section "^; Config_panel" "^; " $test_serie_rawconf)