Try apps list first

This commit is contained in:
Bob Mottram 2016-09-30 17:39:02 +01:00
parent 615aaf9b1f
commit 006e58e1de
1 changed files with 8 additions and 7 deletions

View File

@ -59,13 +59,9 @@ function item_in_array {
function app_is_installed {
app_name="$1"
if [ ! -f $COMPLETION_FILE ]; then
echo "0"
return
fi
if [ -f /usr/share/${PROJECT_NAME}/installed.txt ]; then
if ! grep -Fxq "install_${app_name}" /usr/share/${PROJECT_NAME}/installed.txt; then
INSTALLED_APPS_LIST=/usr/share/${PROJECT_NAME}/installed.txt
if [ -f $INSTALLED_APPS_LIST ]; then
if ! grep -Fxq "install_${app_name}" $INSTALLED_APPS_LIST; then
echo "0"
else
echo "1"
@ -73,6 +69,11 @@ function app_is_installed {
return
fi
if [ ! -f $COMPLETION_FILE ]; then
echo "0"
return
fi
if ! grep -Fxq "install_${app_name}" $COMPLETION_FILE; then
echo "0"
else