Skip to content

Commit

Permalink
PR #2067: Fix the build.ps1 in internaltion system environment
Browse files Browse the repository at this point in the history
  • Loading branch information
tomimon authored and xuzhg committed Apr 10, 2020
1 parent 622a4ad commit 213699f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ ForEach ($directory in $SysDirectory::EnumerateDirectories($PROGRAMFILESX86 + "\
$directoryName = $directoryName.substring(0, $directoryName.LastIndexOf('A'))

# parse to double "10.0"
$versionNo = [System.Double]::Parse($directoryName)
$versionNo = [System.Double]::Parse($directoryName, [System.Globalization.CultureInfo]::InvariantCulture)

$fileobject = $null
$fileobject = New-Object System.Object
Expand Down

0 comments on commit 213699f

Please sign in to comment.