From 9a4d284332cc0952454999c70bd4eee84b98a58d Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Fri, 16 Mar 2018 12:56:19 +0100 Subject: [PATCH] Fix bad variable for multi_instance --- sub_scripts/testing_process.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sub_scripts/testing_process.sh b/sub_scripts/testing_process.sh index 1792e50..65a416f 100644 --- a/sub_scripts/testing_process.sh +++ b/sub_scripts/testing_process.sh @@ -865,9 +865,9 @@ CHECK_MULTI_INSTANCE () { local manifest_args_mod="$manifest_arguments" # Replace manifest key for the test - if [ "$install_type" = "subdir" ]; then + if [ "$previous_install" = "subdir" ]; then local check_path=$test_path - elif [ "$install_type" = "root" ]; then + elif [ "$previous_install" = "root" ]; then local check_path=/ fi replace_manifest_key "path" "$check_path"