Skip to content

Commit

Permalink
Updated VirtoCommerce.Module
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-dudarev committed Jun 18, 2016
1 parent 7eedc91 commit 0412083
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VirtoCommerce.Module/VirtoCommerce.Module.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>VirtoCommerce.Module</id>
<version>0.5.0</version>
<version>0.6.0</version>
<title>VirtoCommerce.Module</title>
<authors>VirtoCommerce</authors>
<owners>VirtoCommerce</owners>
Expand Down
4 changes: 3 additions & 1 deletion VirtoCommerce.Module/tools/VirtoCommerce.Module.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ function Compress-Module
$msbuild = "${env:windir}\Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
}

$tempDir = Join-Path $env:temp (New-Guid)
$newGuid = [Guid]::NewGuid()
$tempDirName = "_vc_module_$newGuid"
$tempDir = Join-Path $env:temp $tempDirName
$modulesDir = "$tempDir\_PublishedWebsites"
$packagesDir = $OutputDir

Expand Down

0 comments on commit 0412083

Please sign in to comment.