Skip to content

Commit 6b8e3ff

Browse files
authored
Merge pull request #17 from reysic/release-process
fix release process package handling
2 parents b7ad7e4 + 36cb5e8 commit 6b8e3ff

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.init/init.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function Install-NuGetVsoAuthProvider
4747

4848
# Restore NuGet packages, listed in packages.config
4949
function Restore-NuGetPackages(
50-
[string]$packageConfig = "$PSScriptRoot\..\Vault..\Explorer\packages.config"
50+
[string]$packageConfig = "$PSScriptRoot\..\Vault\Explorer\packages.config"
5151
)
5252
{
5353
# obtain package sources (for nuget.exe)

release.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ if (Test-Path $outDir) {
3838
# Publish the application.
3939
Push-Location $projDir
4040
try {
41-
Write-Output 'Restoring:'
42-
dotnet restore -r win-x64
4341
Write-Output 'Running init.cmd'
4442
Start-Process -Wait $workingDir\init.cmd
43+
Write-Output 'Restoring:'
44+
dotnet restore -r win-x64
4545
Write-Output 'Publishing:'
4646
$msBuildVerbosityArg = '/v:m'
4747
if ($env:CI) {

0 commit comments

Comments
 (0)