From 6ecabdfee4a059c473a8a92073b0db58f8efaa02 Mon Sep 17 00:00:00 2001 From: Kevin Song <4605384+chipbuster@users.noreply.github.com> Date: Thu, 11 Jun 2020 13:12:14 -0500 Subject: fix: errant space breaks tar in installer (#1314) --- install/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install/install.sh b/install/install.sh index 466fa204e..e14e47768 100755 --- a/install/install.sh +++ b/install/install.sh @@ -114,7 +114,7 @@ fetch_and_unpack() { # I'd like to separate this into a fetch() and unpack() function, but I can't # figure out how to get bash functions to read STDIN/STDOUT from pipes if [ "${EXT}" = "tar.gz" ]; then - fetch "${URL}" | ${sudo} tar xzf "${VERBOSE}" - -C "${BIN_DIR}" + fetch "${URL}" | ${sudo} tar xz"${VERBOSE}"f - -C "${BIN_DIR}" elif [ "${EXT}" = "zip" ]; then # According to https://unix.stackexchange.com/q/2690, zip files cannot be read # through a pipe. We'll have to do our own file-based setup. -- cgit v1.2.3