Hardcoded 'C:\' has been replaced to '$($env:SystemDrive)\'

This commit is contained in:
Andrey Mishechkin
2020-01-07 16:04:14 +04:00
parent ce965c849c
commit f72d0ae63c

View File

@@ -2,7 +2,7 @@
## File: Install-SeleniumWebDrivers.ps1
## Desc: Install Selenium Web Drivers
################################################################################
$DestinationPath = "C:\";
$DestinationPath = "$($env:SystemDrive)\";
$DriversZipFile = "SeleniumWebDrivers.zip"
Write-Host "Destination path: [$DestinationPath]";
Write-Host "Selenium drivers download and install...";