We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d52d2 commit 9ebaa64Copy full SHA for 9ebaa64
scripts/dockcross-manylinux-build-tarball.sh
@@ -4,10 +4,16 @@
4
# downloaded by the external module build scripts and used to build their
5
# Python package on GitHub CI services.
6
7
-cd /home/kitware/Packaging
+if test -d /home/kitware/Packaging; then
8
+ cd /home/kitware/Packaging
9
+fi
10
+zstd_exe=zstd
11
+if test -e /home/kitware/Support/zstd-build/programs/zstd; then
12
+ zstd_exe=/home/kitware/Support/zstd-build/programs/zstd
13
14
tar -c --to-stdout \
15
ITKPythonPackage/ITK-* \
16
ITKPythonPackage/scripts > ITKPythonBuilds-linux.tar
-/home/kitware/Support/zstd-build/programs/zstd -f \
17
+$zstd_exe -f \
18
./ITKPythonBuilds-linux.tar \
19
-o ./ITKPythonBuilds-linux.tar.zst
0 commit comments