Add ".sh" extension to apt_info_script file

This commit is contained in:
agnostic-apollo
2021-04-13 16:57:24 +05:00
parent 1132028bd2
commit d19cf435be

View File

@@ -20,7 +20,7 @@ subscribed_repositories() {
else else
echo "#### sources.list.d/$(basename "$filename")" echo "#### sources.list.d/$(basename "$filename")"
fi fi
echo "\`$supl_sources\`" echo "\`$supl_sources\` "
fi fi
done < <(find "@TERMUX_PREFIX@/etc/apt/sources.list.d" -maxdepth 1 ! -type d) done < <(find "@TERMUX_PREFIX@/etc/apt/sources.list.d" -maxdepth 1 ! -type d)
} }
@@ -37,7 +37,7 @@ updatable_packages() {
if [ -z "$updatable" ];then if [ -z "$updatable" ];then
echo "All packages up to date" echo "All packages up to date"
else else
echo "\`$updatable\`" echo $'```\n'"$updatable"$'\n```\n'
fi fi
fi fi
} }
@@ -50,6 +50,7 @@ $(subscribed_repositories)
### Updatable Packages ### Updatable Packages
$(updatable_packages) $(updatable_packages)
## ##