Skip to content

Commit f170978

Browse files
committed
Fixed string expansion
1 parent b26e4e0 commit f170978

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

VirtualEngine.Compression.psm1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## Import the .Net 4.5 compression binaries as this is needed to be able to parse the
22
## VirtualEngine.ZipArchive.ps1 file.
3-
Write-Debug "Loading 'System.IO.Compression' .NET binaries.";
4-
Add-Type -AssemblyName "System.IO.Compression";
5-
Add-Type -AssemblyName "System.IO.Compression.FileSystem";
3+
Write-Debug 'Loading ''System.IO.Compression'' .NET binaries.';
4+
Add-Type -AssemblyName 'System.IO.Compression';
5+
Add-Type -AssemblyName 'System.IO.Compression.FileSystem';
66

77
## Import the VirtualEngine.ZipArchive.ps1 file. This permits loading of the module's
88
## functions for unit testing, without having to unload/load the whole module.
9-
. (Join-Path (Split-Path $PSCommandPath) VirtualEngine.ZipArchive.ps1);
9+
. (Join-Path -Path (Split-Path -Path $PSCommandPath) -ChildPath VirtualEngine.ZipArchive.ps1);
1010

1111
## Export public functions
1212
Export-ModuleMember -Function *-*;

0 commit comments

Comments
 (0)