这是indexloc提供的服务,不要输入任何密码
Skip to content

termux-tools: companion of termux/termux-app#1031 #3337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
2 commits merged into from
Apr 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/termux-tools/build.sh
Original file line number Diff line number Diff line change
@@ -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.62
TERMUX_PKG_VERSION=0.63
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
TERMUX_PKG_ESSENTIAL=yes
TERMUX_PKG_DEPENDS="termux-am"
Expand Down
5 changes: 1 addition & 4 deletions packages/termux-tools/termux-open
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,9 @@ fi

FILE="$1"
if [ -f "$FILE" ]; then
FILE=`realpath "$FILE"`
FILE=$(realpath "$FILE")
fi

# Fix for issues on Android 8.1.
FILE=$(echo "$FILE" | sed 's/^\///')

am broadcast --user 0 \
-a $ACTION \
-n com.termux/com.termux.app.TermuxOpenReceiver \
Expand Down