mirror of https://github.com/portainer/portainer
parent
29a041e072
commit
292e525539
|
@ -1,7 +1,17 @@
|
||||||
param (
|
|
||||||
[string]$platform,
|
|
||||||
[string]$arch
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
$ErrorActionPreference = "Stop";
|
$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"
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
DEBUG=${DEBUG:-""}
|
||||||
|
if [ -n "$DEBUG" ]; then
|
||||||
|
set -x
|
||||||
|
fi
|
||||||
|
|
||||||
mkdir -p dist
|
mkdir -p dist
|
||||||
|
|
||||||
# populate tool versions
|
# populate tool versions
|
||||||
|
|
Loading…
Reference in New Issue