From 0a25f20b22e51efe3f4e499037ec4c3ee3fe76ff Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sun, 30 Dec 2018 12:24:16 +0100 Subject: [PATCH] build-package: fix truncated comment --- build-package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-package.sh b/build-package.sh index ab6b4e446..bfef23fc2 100755 --- a/build-package.sh +++ b/build-package.sh @@ -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 ) }