Skip to content

Commit 8ac76be

Browse files
committed
correction to relative paths used to find repo root.
1 parent a87a059 commit 8ac76be

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

test_harness/multi/iinit.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../utility/iinit.py

test_harness/multi/start_containers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ IRODS_MAJOR=${IRODS_VERSION//.*/}
4141

4242
DIR=$(dirname "$0")
4343
cd "${DIR}"
44-
REPO_ROOT=$(realpath ..)
44+
REPO_ROOT=$(realpath ../..)
4545

4646
echo "\
4747
repo_external=\"${REPO_ROOT}\"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22
# The following line needs be kept updated to reflect true position relative to repository root,
33
# in the event this script or any of its chain of containing directories (up to but not including the repo root) are moved.
4-
REPO_ROOT_RELATIVE_TO_THIS_SCRIPT=../../..
4+
REPO_ROOT_RELATIVE_TO_THIS_SCRIPT=../..
55
realpath "$(dirname "$0")/$REPO_ROOT_RELATIVE_TO_THIS_SCRIPT"

0 commit comments

Comments
 (0)