Skip to content

Commit 8093735

Browse files
committed
ws, backslash at EOL
1 parent ebd3f4a commit 8093735

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

irods/test/scripts/test_support_functions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file may be sourced from a test script written in Bash or BATS. It
1+
# This file may be sourced from a test script written in Bash or BATS. It
22
# contains a number of utility functions, most of which have to do with:
33
#
44
# 1. implementing common tasks, often setup or configuration wrt iRODS; or

test_harness/single_node/build-docker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fi
1919

2020
: ${PYTHON_VERSION:=3.13} export PYTHON_VERSION
2121

22-
for dockerfile in "${ARGS[@]}"; do
22+
for dockerfile in "${ARGS[@]}"; do
2323
image_name=${dockerfile#[0-9]*_}
2424
image_name=${image_name%.Dockerfile}
2525
irods_package_version_option=""
@@ -34,6 +34,6 @@ for dockerfile in "${ARGS[@]}"; do
3434
python_version_option=${PYTHON_VERSION:+"--build-arg=python_version=$PYTHON_VERSION"}
3535
fi
3636
$DOCKER build -f $dockerfile -t $image_name . $irods_package_version_option $python_version_option \
37-
${NO_CACHE+"--no-cache"} ||
37+
${NO_CACHE+"--no-cache"} || \
3838
{ STATUS=$?; echo "*** Failure while building [$image_name]"; exit $STATUS; }
3939
done

test_harness/single_node/docker_container_driver.sh

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

3-
# Runs a test program within a new container. The container is dispatched and/or disposed of, and the exit
3+
# Runs a test program within a new container. The container is dispatched and/or disposed of, and the exit
44
# status code of the target test program collected and returned, by this script.
55

66
# The repository containing this harness directory is mapped to a direct subdirectory of / within the container.

0 commit comments

Comments
 (0)