mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 04:27:39 +03:00
2.7.0 Changelog and minor release-tool fix
* Fix creating output directory on power shell release tool
This commit is contained in:
parent
e85425050b
commit
18704f5a19
2 changed files with 93 additions and 2 deletions
|
@ -333,8 +333,6 @@ if ($Merge) {
|
|||
Write-Host "Please merge the release branch back into the develop branch now and then push your changes."
|
||||
Write-Host "Don't forget to also push the tags using 'git push --tags'."
|
||||
} elseif ($Build) {
|
||||
$OutDir = (Resolve-Path $OutDir).Path
|
||||
$BuildDir = "$OutDir\build-release"
|
||||
$Vcpkg = (Resolve-Path $Vcpkg).Path
|
||||
|
||||
# Find Visual Studio and establish build environment
|
||||
|
@ -372,6 +370,9 @@ if ($Merge) {
|
|||
|
||||
# Create directories
|
||||
New-Item "$OutDir" -ItemType Directory -Force | Out-Null
|
||||
$OutDir = (Resolve-Path $OutDir).Path
|
||||
|
||||
$BuildDir = "$OutDir\build-release"
|
||||
New-Item "$BuildDir" -ItemType Directory -Force | Out-Null
|
||||
|
||||
# Enter build directory
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue