Skip to content

Commit 2d4c8e5

Browse files
committed
CI: incoporate appveyor build folder variable
1 parent 6cc875c commit 2d4c8e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/install_appveyor.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function InstallCondaPackages ($python_home, $spec) {
109109
}
110110
function InstallCondaPackagesFromFile ($python_home, $ver, $arch) {
111111
$conda_path = $python_home + "\Scripts\conda.exe"
112-
$args = "install --yes --quiet --file C:\projects\pandas\ci\requirements-" + $ver + "_" + $arch + ".txt"
112+
$args = "install --yes --quiet --file " + $env:APPVEYOR_BUILD_FOLDER + "\pandas\ci\requirements-" + $ver + "_" + $arch + ".txt"
113113
Write-Host ("conda " + $args)
114114
Start-Executable -FilePath "$conda_path" -ArgumentList $args
115115
}

0 commit comments

Comments
 (0)