Skip to content

Commit be3cad9

Browse files
itfranckfsackurFreddie Sackuralaurie
authored
Changes merged in Master that are Preview3 related. (#208)
* Fixed casing in .psd1 to match Types.ps1xml filename (#203) Co-authored-by: Freddie Sackur <[email protected]> * Corrected child path for the $OS switch (#206) Directory names were incorrect for the child path's in the $OS switch. Changed from '/assembiles' to '/assemblies' Co-authored-by: Freddie Sackur <[email protected]> Co-authored-by: Freddie Sackur <[email protected]> Co-authored-by: Alex Laurie <[email protected]>
1 parent d5d8c98 commit be3cad9

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

Public/Update-SeDriver.ps1

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ function Update-SeDriver {
1818
$Path = $PSScriptRoot
1919
if ($Path.EndsWith('Public')) { $Path = Split-Path -Path $Path } #Debugging
2020
switch ($OS) {
21-
'Linux' { $AssembliesDir = Join-Path -Path $Path -ChildPath '/assembiles/linux' }
22-
'Mac' { $AssembliesDir = Join-Path -Path $Path -ChildPath '/assembiles/macos' }
23-
'Windows' { $AssembliesDir = Join-Path -Path $Path -ChildPath '/assembiles' }
21+
'Linux' { $AssembliesDir = Join-Path -Path $Path -ChildPath '/assemblies/linux' }
22+
'Mac' { $AssembliesDir = Join-Path -Path $Path -ChildPath '/assemblies/macos' }
23+
'Windows' { $AssembliesDir = Join-Path -Path $Path -ChildPath '/assemblies' }
2424
}
2525

2626
}
@@ -59,9 +59,4 @@ function Update-SeDriver {
5959
Write-Warning 'Not Supported Yet'
6060
}
6161
}
62-
63-
64-
65-
66-
67-
}
62+
}

Selenium.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
# RequiredModules = @()
7070

7171
#Type files (.ps1xml) to be loaded when importing this module
72-
TypesToProcess = @('types/Selenium.types.ps1xml')
72+
TypesToProcess = @('types/Selenium.Types.ps1xml')
7373

7474
# Format files (.ps1xml) to be loaded when importing this module
7575
FormatsToProcess = @('formats/Selenium.format.ps1xml')

0 commit comments

Comments
 (0)