Function parameters
This commit is contained in:
parent
03b8a85f98
commit
82b087c46a
|
@ -77,7 +77,7 @@ function mark_unselected_apps_as_removed {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
function app_expected_to_not_be_installed {
|
function app_expected_to_be_installed {
|
||||||
# is the given application expected to be installed by default?
|
# is the given application expected to be installed by default?
|
||||||
select_all_apps="$1"
|
select_all_apps="$1"
|
||||||
app_name="$2"
|
app_name="$2"
|
||||||
|
@ -86,15 +86,15 @@ function app_expected_to_not_be_installed {
|
||||||
|
|
||||||
if [[ "$select_all_apps" == "add-all" ]]; then
|
if [[ "$select_all_apps" == "add-all" ]]; then
|
||||||
if [[ "$app_name" == "vim" ]]; then
|
if [[ "$app_name" == "vim" ]]; then
|
||||||
echo "1"
|
echo "0"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
if [[ $ONION_ONLY != 'no' && "$app_name" == "hubzilla" ]]; then
|
if [[ $ONION_ONLY != 'no' && "$app_name" == "hubzilla" ]]; then
|
||||||
echo "1"
|
echo "0"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
echo "0"
|
echo "1"
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_apps {
|
function show_apps {
|
||||||
|
@ -107,7 +107,7 @@ function show_apps {
|
||||||
if [[ ${APPS_INSTALLED[$app_index]} == "0" && "$select_all_apps" != "add-all" ]]; then
|
if [[ ${APPS_INSTALLED[$app_index]} == "0" && "$select_all_apps" != "add-all" ]]; then
|
||||||
applist="$applist $n $a off"
|
applist="$applist $n $a off"
|
||||||
else
|
else
|
||||||
if [[ $(app_expected_to_not_be_installed) == "1" ]]; then
|
if [[ $(app_expected_to_be_installed "$select_all_apps" "$a") == "0" ]]; then
|
||||||
applist="$applist $n $a off"
|
applist="$applist $n $a off"
|
||||||
else
|
else
|
||||||
applist="$applist $n $a on"
|
applist="$applist $n $a on"
|
||||||
|
|
Loading…
Reference in New Issue