Skip to content

Commit 27e632c

Browse files
committed
STYLE: Strip trailing whitespace in files
Reduce noise in future script modifications
1 parent 5180812 commit 27e632c

7 files changed

Lines changed: 12 additions & 12 deletions

scripts/dockcross-manylinux-build-module-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
# ===========================================
1616
# ENVIRONMENT VARIABLES
1717
#
18-
# These variables are set with the `export` bash command before calling the script.#
18+
# These variables are set with the `export` bash command before calling the script.#
1919
# For example,
2020
#
2121
# export MANYLINUX_VERSION="_2_28"
2222
# scripts/dockcross-manylinux-build-module-wheels.sh cp39
23-
#
23+
#
2424
# `LD_LIBRARY_PATH`: Shared libraries to be included in the resulting wheel.
2525
# For instance, `export LD_LIBRARY_PATH="/path/to/OpenCL.so:/path/to/OpenCL.so.1.2"`
2626
#

scripts/dockcross-manylinux-download-cache.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
########################################################################
4-
# Download ITK build cache and other requirements to prepare for
4+
# Download ITK build cache and other requirements to prepare for
55
# generating Linux Python wheels of the given ITK module.
66
#
77
# Most ITK modules will download and call `dockcross-manylinux-download-cache-and-build-module-wheels.sh` which will
@@ -125,7 +125,7 @@ if [[ -n ${ITKPYTHONPACKAGE_TAG} ]]; then
125125
git checkout "${ITKPYTHONPACKAGE_TAG}"
126126
git status
127127
popd
128-
128+
129129
rm -rf ITKPythonPackage/scripts/
130130
cp -r IPP-tmp/scripts ITKPythonPackage/
131131
cp IPP-tmp/requirements-dev.txt ITKPythonPackage/

scripts/dockcross-manylinux-set-vars.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
########################################################################
4-
# Run this script to set common enviroment variables used in building the
4+
# Run this script to set common enviroment variables used in building the
55
# ITK Python wheel packages for Linux.
66
#
77
# ENVIRONMENT VARIABLES

scripts/internal/manylinux-build-module-wheels.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
#
88
# /tmp/dockcross-manylinux-x64 manylinux-build-module-wheels.sh cp39
99
#
10-
# Shared library dependencies can be included in the wheel by mounting them to /usr/lib64 or /usr/local/lib64
10+
# Shared library dependencies can be included in the wheel by mounting them to /usr/lib64 or /usr/local/lib64
1111
# before running this script.
12-
#
12+
#
1313
# For example,
1414
#
1515
# DOCKER_ARGS="-v /path/to/lib.so:/usr/local/lib64/lib.so"
@@ -159,7 +159,7 @@ fi
159159

160160
sudo ${Python3_EXECUTABLE} -m pip install auditwheel
161161
for whl in dist/*linux*$(uname -m).whl; do
162-
auditwheel repair ${whl} -w /work/dist/ ${AUDITWHEEL_EXCLUDE_ARGS}
162+
auditwheel repair ${whl} -w /work/dist/ ${AUDITWHEEL_EXCLUDE_ARGS}
163163
if $use_skbuild_classic; then
164164
rm ${whl}
165165
fi

scripts/internal/manylinux-build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
#
88
# /tmp/dockcross-manylinux-x64 manylinux-build-wheels.sh cp39
99
#
10-
# Shared library dependencies can be included wheels by mounting them to /usr/lib64 or /usr/local/lib64
10+
# Shared library dependencies can be included wheels by mounting them to /usr/lib64 or /usr/local/lib64
1111
# before running this script.
12-
#
12+
#
1313
# For example,
1414
#
1515
# DOCKER_ARGS="-v /path/to/lib.so:/usr/local/lib64/lib.so"

scripts/macpython-delocate-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
# Shared libraries can be included in the wheel by exporting them to DYLD_LIBRARY_PATH before
1111
# running this script.
12-
#
12+
#
1313
# For example,
1414
#
1515
# export DYLD_LIBRARY_PATH="/path/to/libs"

scripts/macpython-download-cache-and-build-module-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ if [[ -n ${ITKPYTHONPACKAGE_TAG} ]]; then
7979
git checkout "${ITKPYTHONPACKAGE_TAG}"
8080
git status
8181
popd
82-
82+
8383
rm -rf ITKPythonPackage/scripts/
8484
cp -r IPP-tmp/scripts ITKPythonPackage/
8585
rm -rf IPP-tmp/

0 commit comments

Comments
 (0)