We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows only variable has been referenced in Get-AzureRMCloudCapability.ps script breaking functionality with non Windows Operating systems.
Please consider using unified variable "[system.io.path]::GetTempPath()"
link here https://github.com/Azure/AzureStack-Tools/blob/master/CloudCapabilities/AzureRM.CloudCapabilities.psm1#L48
replace: $rootPath = $env:TEMP with: $rootPath = [system.io.path]::GetTempPath()
$rootPath = $env:TEMP
$rootPath = [system.io.path]::GetTempPath()
would have issued a pull request myself to fix this but its greyed out?
The text was updated successfully, but these errors were encountered:
bganapa
No branches or pull requests
Windows only variable has been referenced in Get-AzureRMCloudCapability.ps script breaking functionality with non Windows Operating systems.
Please consider using unified variable "[system.io.path]::GetTempPath()"
link here https://github.com/Azure/AzureStack-Tools/blob/master/CloudCapabilities/AzureRM.CloudCapabilities.psm1#L48
replace:
$rootPath = $env:TEMP
with:
$rootPath = [system.io.path]::GetTempPath()
would have issued a pull request myself to fix this but its greyed out?
The text was updated successfully, but these errors were encountered: