Browse Source
Merge pull request #3682 from wynro/master
Correct support of remove command in pkg
emacs-27
Henrik Grimler
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
packages/termux-tools/build.sh
-
packages/termux-tools/pkg
|
|
@ -1,7 +1,7 @@ |
|
|
|
TERMUX_PKG_HOMEPAGE=https://termux.com/ |
|
|
|
TERMUX_PKG_DESCRIPTION="Basic system tools for Termux" |
|
|
|
TERMUX_PKG_LICENSE="GPL-3.0" |
|
|
|
TERMUX_PKG_VERSION=0.64 |
|
|
|
TERMUX_PKG_VERSION=0.65 |
|
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=yes |
|
|
|
TERMUX_PKG_ESSENTIAL=yes |
|
|
|
TERMUX_PKG_DEPENDS="termux-am" |
|
|
|
|
|
@ -36,7 +36,7 @@ case "$CMD" in |
|
|
|
add|i*) assert_not_root; apt update; apt install $@;; |
|
|
|
list-a*) apt list $@;; |
|
|
|
list-i*) apt list --installed $@;; |
|
|
|
re*) assert_not_root; apt install --reinstall $@;; |
|
|
|
rei*) assert_not_root; apt install --reinstall $@;; |
|
|
|
se*) assert_not_root; apt update; apt search $@;; |
|
|
|
sh*) apt show $@;; |
|
|
|
un*|rem*|rm|del*) assert_not_root; apt remove $@;; |
|
|
|