build-package: fix truncated comment

This commit is contained in:
Henrik Grimler 2018-12-30 12:24:16 +01:00
parent 9c7201213f
commit 0288289cee
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ termux_install_dep_deb() {
curl --fail -LO $TERMUX_REPO_URL/binary-${package_arch}/${deb_file} 2>/dev/null \
&& if [ ! "$TERMUX_QUIET_BUILD" = true ]; then echo "Extracting $package..."; fi \
&& ar x ${deb_file} data.tar.xz && tar xf data.tar.xz --no-overwrite-dir -C /
# TODO: this implementation is buggy if the `ar x` or `tar xf
# TODO: this implementation is buggy if the `ar x` or `tar xf` steps fail
)
}