diff options
author | Patrick Lehmann <Patrick.Lehmann@tu-dresden.de> | 2016-10-14 14:17:13 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@tu-dresden.de> | 2016-10-14 14:17:13 +0200 |
commit | d1fb7f9772ec1a4fafb39c75a52ef064b6467398 (patch) | |
tree | b7cca307b5a467980b70e7677a6c8a23084b1e05 /dist/mcode/windows/shared.psm1 | |
parent | 1a1d378dcafeca5a18dfa8862ebe412efa1e9718 (diff) | |
download | ghdl-d1fb7f9772ec1a4fafb39c75a52ef064b6467398.tar.gz ghdl-d1fb7f9772ec1a4fafb39c75a52ef064b6467398.tar.bz2 ghdl-d1fb7f9772ec1a4fafb39c75a52ef064b6467398.zip |
Windows Build Flow: Fixed error of premature module unload.
Diffstat (limited to 'dist/mcode/windows/shared.psm1')
-rw-r--r-- | dist/mcode/windows/shared.psm1 | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/dist/mcode/windows/shared.psm1 b/dist/mcode/windows/shared.psm1 index e39ce67ce..81a11be82 100644 --- a/dist/mcode/windows/shared.psm1 +++ b/dist/mcode/windows/shared.psm1 @@ -32,19 +32,19 @@ [CmdletBinding()] param( - [Parameter(Mandatory=$true)][string]$WorkingDir + [Parameter(Mandatory=$true)][string]$WorkingDir, + [Parameter(Mandatory=$true)][Switch]$Hosted ) -$Module_WorkingDir = $WorkingDir +$Module_WorkingDir = $WorkingDir +$Module_Hosted = $Hosted function Exit-CompileScript -{ <# +{ <# .SYNOPSIS Undocumented - .DESCRIPTION Undocumented - .PARAMETER ExitCode ExitCode of this script run #> @@ -52,13 +52,12 @@ function Exit-CompileScript param( [int]$ExitCode = 0 ) - cd $Module_WorkingDir - # unload modules - Remove-Module shared -Verbose:$false - Remove-Module targets -Verbose:$false - + if (-not $Module_Hosted) + { Remove-Module shared -Verbose:$false + Remove-Module targets -Verbose:$false + } exit $ExitCode } |