Skip to content
Snippets Groups Projects
Commit 22436fbf authored by Bob Mottram's avatar Bob Mottram
Browse files

Remove debugging

parent 8d0af365
No related branches found
No related tags found
No related merge requests found
......@@ -44,8 +44,6 @@ function android_update_apps {
echo '{' > "$plinth_api"
echo ' "shortcuts": [' >> "$plinth_api"
echo 'android app' > /var/log/androidapp.log
android_ctr=0
app_index=0
# shellcheck disable=SC2068,SC2034
......@@ -53,19 +51,14 @@ function android_update_apps {
do
app_name=${APPS_INSTALLED_NAMES[$app_index]}
if [ "$app_name" ]; then
echo "Starting app ${APPS_INSTALLED_NAMES[$app_index]}" >> /var/log/androidapp.log
echo "App installed $app_name" >> /var/log/androidapp.log
app_filename="/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-${app_name}"
if [ -f "$app_filename" ]; then
echo "File exists $app_filename" >> /var/log/androidapp.log
# get the icon for the app
icon_filename="/usr/share/${PROJECT_NAME}/android-app/${app_name}.png"
if [ -f "$icon_filename" ]; then
cp "$icon_filename" "/var/www/${local_hostname}/htdocs/icons/${app_name}.png"
echo "icon copied" >> /var/log/androidapp.log
else
icon_filename=
echo "icon not copied" >> /var/log/androidapp.log
fi
app_name_upper=$(echo "$app_name" | awk '{print toupper($0)}')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment