We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf4af04 commit b6475beCopy full SHA for b6475be
dev/appveyor-install-dependencies.ps1
@@ -46,6 +46,8 @@ Function InstallR {
46
47
# Testing R installation
48
Rscript -e "sessionInfo()"
49
+
50
+ if ( -not (Test-Path -Path 'C:\MinGW\msys\1.0\bin') ) { echo "MinGW\msys doesn't exist" }
51
}
52
53
Function InstallRtools {
@@ -69,6 +71,8 @@ Function InstallRtools {
69
71
70
72
$env:PATH = $RtoolsDrive + '\Rtools40\bin;' + $RtoolsDrive + '\Rtools40\mingw64\bin;' + $RtoolsDrive + '\Rtools40\' + $gccPath + '\bin;' + $env:PATH
73
$env:BINPREF=$RtoolsDrive + '/Rtools40/mingw$(WIN)/bin/'
74
75
+ if ( -not (Test-Path -Path $($RtoolsDrive + '\Rtools40\' + $gccPath + '\bin')) ) { echo "gccPath doesn't exist" }
76
77
78
# create tools directory outside of Spark directory
0 commit comments