Compare commits

..

No commits in common. "2200e5bac67d957160ee89247f74e98c5800a310" and "cb46751b920cf41d0e026f5ad736c37d234f491e" have entirely different histories.

9
aps
View file

@ -162,13 +162,7 @@ help(){
echo "sync - Synchronizes from package repository."
echo "install - Installs from local package information file and build file."
echo "upgrade - Upgrades from package repository."
echo "remove - Removes a package from /var/aps/installed and it's install files (payloadfiles)."
echo "list - Lists currently installed packages."
echo "help - Display this message."
echo "version - Display the version."
}
list(){
ls ${installed_pkg_database} | sed 's/^README.md//g'
echo "remove - Removes a package from /var/aps/installed and it's install files (payloadfiles)."
}
main() {
if [ -f "${lock}" ]; then
@ -190,7 +184,6 @@ main() {
upgrade) upgrade "official" ;;
help) help ;;
version) version ;;
list) list ;;
*) die "[E] Invalid option ${1}, exiting..." ;;
esac
rm "${lock}"