mirror of https://github.com/portainer/portainer
18 lines
438 B
PowerShell
Executable File
18 lines
438 B
PowerShell
Executable File
|
|
$ErrorActionPreference = "Stop";
|
|
|
|
$binary = "portainer.exe"
|
|
$project_path = $((Get-Location).Path)
|
|
|
|
New-Item -Name dist -Path "$project_path" -ItemType Directory | Out-Null
|
|
Set-Location -Path "$project_path\api\cmd\portainer"
|
|
|
|
# copy templates
|
|
Copy-Item -Path "./mustache-templates" -Destination "./dist" -Recurse
|
|
|
|
|
|
C:\go\bin\go.exe get -t -d -v ./...
|
|
C:\go\bin\go.exe build -v
|
|
|
|
Move-Item -Path "$($binary)" -Destination "..\..\..\dist"
|