Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit f1b3fc7

Browse files
lemmaajkotas
authored andcommitted
Fix copy check condition for native interop test library. (#6468)
1 parent 561b64d commit f1b3fc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/runtest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ fi
10451045
if [ -z "$mscorlibDir" ]; then
10461046
mscorlibDir=$coreClrBinDir
10471047
fi
1048-
if [ -d $mscorlibDir/bin ]; then
1048+
if [ -d "$mscorlibDir" ] && [ -d "$mscorlibDir/bin" ]; then
10491049
cp $mscorlibDir/bin/* $mscorlibDir
10501050
fi
10511051

0 commit comments

Comments
 (0)