This repository was archived by the owner on May 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ extract() {
33
33
34
34
if [ " ` uname` " = " Linux" ]; then
35
35
outputdir=/output
36
- outputfile=$outputdir /codecs-manylinux_$( uname -m) .tar.bz2
36
+ outputfile=$outputdir /codecs-manylinux_$( uname -m) .tar.gz
37
37
elif [ " ` uname` " = " Darwin" ]; then
38
38
outputdir=` pwd` /output
39
- outputfile=$outputdir /codecs-macosx_$( uname -m) .tar.bz2
39
+ outputfile=$outputdir /codecs-macosx_$( uname -m) .tar.gz
40
40
else
41
41
echo " Unknown platform"
42
42
exit 1
@@ -64,5 +64,5 @@ if [ ! -e $outputfile ]; then
64
64
make install
65
65
cd ..
66
66
67
- tar cjvf $outputfile -C $destdir include lib
67
+ tar czvf $outputfile -C $destdir include lib
68
68
fi
Original file line number Diff line number Diff line change 1
1
set destdir = %1
2
2
3
- set outputfile = output\codecs-win%PYTHON_ARCH% .tar.bz2
3
+ set outputfile = output\codecs-win%PYTHON_ARCH% .tar.gz
4
4
if " %PYTHON_ARCH% " == " 64" (
5
5
set triplet = x64-windows-static
6
6
) else (
@@ -21,4 +21,4 @@ xcopy C:\vcpkg\installed\%triplet%\lib %destdir%\lib\ /E
21
21
if not exist output (
22
22
mkdir output
23
23
)
24
- tar cjvf %outputfile% -C %destdir% include lib
24
+ tar czvf %outputfile% -C %destdir% include lib
You can’t perform that action at this time.
0 commit comments