Skip to content

Commit fde6943

Browse files
committed
Update external test dir as absolute path
1 parent 4718d61 commit fde6943

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/getSHAs.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,11 @@ getSHAs()
7474
# Get SHA for external tests by test.properties
7575
if [[ "$BUILD_LIST" == *"external"* ]]; then
7676
for subDir in "$TEST_ROOT"/external/*/; do
77+
# find "$subDir" -type f -name 'Dockerfile.*'
7778
if [[ $(find "$subDir" -type f -name 'Dockerfile.*') ]]; then
79+
propertiesFile="$subDir/test.properties"
7880
testDir=$(realpath "$(dirname "$subDir")")
79-
propertiesFile="$testDir/test.properties"
81+
echo "testdir is ${testDir}"
8082
if [[ -f "$propertiesFile" ]]; then
8183
# read github_url and tag_version
8284
github_url=$(grep '^github_url=' "$propertiesFile" | cut -d"=" -f2 | tr -d '"')

0 commit comments

Comments
 (0)