From 171f6520a7a6927c1250e7e7ebaf214d9c9f1823 Mon Sep 17 00:00:00 2001 From: Alexander Shorin Date: Tue, 30 Jul 2019 07:12:20 +0300 Subject: [PATCH] Don't include parent directories of py-spy binary for FreeBSD releases --- ci/publish_freebsd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/publish_freebsd.sh b/ci/publish_freebsd.sh index 6f277ffa..9736312c 100755 --- a/ci/publish_freebsd.sh +++ b/ci/publish_freebsd.sh @@ -14,7 +14,7 @@ fi file_content_type="application/octet-stream" fpath=py-spy-$CIRRUS_TAG-x86_64-freebsd.tar.gz -tar czf $fpath ./target/release/py-spy +tar -C ./target/release -czf $fpath py-spy echo "Uploading $fpath..." name=$(basename "$fpath")