mirror of
https://github.com/YunoHost/package_check.git
synced 2024-09-03 20:06:20 +02:00
Fix bad variable for multi_instance
This commit is contained in:
parent
13f2643105
commit
9a4d284332
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue