From a60b840837ea475ac32923f37f5137c2cabef546 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Fri, 24 Apr 2020 12:15:23 +1000 Subject: [PATCH] Update- remove dot. Directory name will be FlowLauncher when nuget pack ignores the dot so instead of getting Flow.Launcher as parent directory name we get Flow --- Scripts/flowlauncher.nuspec | 2 +- Scripts/post_build.ps1 | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Scripts/flowlauncher.nuspec b/Scripts/flowlauncher.nuspec index ba42c77f3..cfac20b06 100644 --- a/Scripts/flowlauncher.nuspec +++ b/Scripts/flowlauncher.nuspec @@ -1,7 +1,7 @@ - Flow.Launcher + FlowLauncher Flow Launcher $version$ happlebao, Jeremy Wu diff --git a/Scripts/post_build.ps1 b/Scripts/post_build.ps1 index 9b5b433c5..14faf82b1 100644 --- a/Scripts/post_build.ps1 +++ b/Scripts/post_build.ps1 @@ -93,7 +93,7 @@ function Pack-Squirrel-Installer ($path, $version, $output) { Write-Host "Input path: $input" Nuget pack $spec -Version $version -Properties Configuration=Release -BasePath $input -OutputDirectory $output - $nupkg = "$output\Flow.Launcher.$version.nupkg" + $nupkg = "$output\FlowLauncher.$version.nupkg" Write-Host "nupkg path: $nupkg" $icon = "$path\Flow.Launcher\Resources\app.ico" Write-Host "icon: $icon" @@ -107,7 +107,7 @@ function Pack-Squirrel-Installer ($path, $version, $output) { Move-Item $temp\* $output -Force Remove-Item $temp - $file = "$output\Flow.Launcher-$version.exe" + $file = "$output\Flow Launcher-$version.exe" Write-Host "Filename: $file" Move-Item "$output\Setup.exe" $file -Force