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

Avoid showing rsync commands twice

parent b5c5ec48
No related branches found
No related tags found
No related merge requests found
......@@ -906,6 +906,11 @@ function web_admin_create_installed_apps_category {
cp "$app_template_filename" "$filename"
# avoid showing the rsync command twice in APPURL and ONIONURL
if [[ "$app_name" == 'rsync' ]]; then
sed -i '/APPURL/d' "$filename"
fi
# single icon, no qrcode
if [[ "$app_name" == 'pihole' || "$app_name" == 'dlna' ]]; then
cp "$app2_template_filename" "$filename"
......
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