File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ getSHAs()
64
64
# Get SHA for non-external tests by find .git dir
65
65
cd " $TEST_ROOT " || exit
66
66
find " $TEST_ROOT " -type d -name " .git" | while read -r gitDir; do
67
- repoDir=$( dirname " $gitDir " )
67
+ repoDir=$( realpath " $( dirname " $gitDir " ) " )
68
68
cd " $repoDir " || continue
69
69
# append the info into $SHAs_FILR
70
70
{ echo " ================================================" ; echo " timestamp: $( timestamp) " ; echo " repo dir: $repoDir " ; echo " git repo: " ; git remote show origin -n | grep " Fetch URL:" ; echo " sha:" ; git rev-parse HEAD; } 2>&1 | tee -a " $SHAs_FILE "
@@ -75,7 +75,6 @@ getSHAs()
75
75
if [[ " $BUILD_LIST " == * " external" * ]]; then
76
76
for subDir in " $TEST_ROOT " /external/* /; do
77
77
echo " subdir is $subDir "
78
- ls " $subDir "
79
78
find " $subDir " -type f -name ' Dockerfile.*'
80
79
if [[ $( find " $subDir " -type f -name ' Dockerfile.*' ) ]]; then
81
80
propertiesFile=" $subDir /test.properties"
You can’t perform that action at this time.
0 commit comments