Skip to content

Commit 042ab55

Browse files
committed
Check if path exists
1 parent 0d8f110 commit 042ab55

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dev/appveyor-install-dependencies.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ Function InstallRtools {
6464
}
6565
$env:PATH = $RtoolsDrive + '\Rtools40\bin;' + $RtoolsDrive + '\Rtools40\mingw64\bin;' + $RtoolsDrive + '\Rtools40\' + $gccPath + '\bin;' + $env:PATH
6666
$env:BINPREF=$RtoolsDrive + '/Rtools40/mingw64/bin/'
67+
68+
if ( -not(Test-Path $RtoolsDrive + '\Rtools40\' + $gccPath + '\bin') ) {
69+
echo "Path doesn't exist"
70+
}
6771
}
6872

6973
# create tools directory outside of Spark directory

0 commit comments

Comments
 (0)