Mayank Chhabra
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
scripts/update/01-run.sh
|
@ -93,8 +93,10 @@ list_installed_apps() { |
|
|
cat "${USER_FILE}" 2> /dev/null | jq -r 'if has("installedApps") then .installedApps else [] end | join("\n")' || true |
|
|
cat "${USER_FILE}" 2> /dev/null | jq -r 'if has("installedApps") then .installedApps else [] end | join("\n")' || true |
|
|
} |
|
|
} |
|
|
list_installed_apps | while read app; do |
|
|
list_installed_apps | while read app; do |
|
|
|
|
|
if [[ "${app}" != "" ]]; then |
|
|
echo "${app}..." |
|
|
echo "${app}..." |
|
|
scripts/app compose "${app}" pull |
|
|
scripts/app compose "${app}" pull |
|
|
|
|
|
fi |
|
|
done |
|
|
done |
|
|
|
|
|
|
|
|
# Stop existing containers |
|
|
# Stop existing containers |
|
|