From ad9805a455db53689f6e8bcb41dead915fd1019c Mon Sep 17 00:00:00 2001 From: "Yamashita, Yuu" Date: Tue, 26 Jul 2016 07:22:47 +0000 Subject: [PATCH] Don't need to create temporary files since tar(1) writes to stdout by default --- plugins/python-build/bin/python-build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 2813256d..527b1884 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -474,8 +474,7 @@ download_tarball() { } has_tar_xz_support() { - local tarxz="$(mktemp "XXXXXXXX.tar.xz")" - tar Jcf "${tarxz}" /dev/null 1>/dev/null 2>&1 + tar Jc /dev/null 1>/dev/null 2>&1 } fetch_git() {