feature: Adds basic backend starting for sshappbackend.
This commit is contained in:
parent
a35602a6f2
commit
ede4d528aa
8 changed files with 434 additions and 23 deletions
|
@ -21,13 +21,13 @@ if [ ! -d bin ]; then
|
|||
fi
|
||||
|
||||
echo " - building for arm64"
|
||||
GOOS=linux GOARCH=arm64 go build -ldflags="-s -w" -trimpath -o bin/rt-arm64 .
|
||||
GOOS=linux GOARCH=arm64 go build -ldflags="-s -w" -trimpath -o ../local-code/remote-bin/rt-arm64 .
|
||||
echo " - building for arm"
|
||||
GOOS=linux GOARCH=arm go build -ldflags="-s -w" -trimpath -o bin/rt-arm .
|
||||
GOOS=linux GOARCH=arm go build -ldflags="-s -w" -trimpath -o ../local-code/remote-bin/rt-arm .
|
||||
echo " - building for amd64"
|
||||
GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -trimpath -o bin/rt-amd64 .
|
||||
GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -trimpath -o ../local-code/remote-bin/rt-amd64 .
|
||||
echo " - building for i386"
|
||||
GOOS=linux GOARCH=386 go build -ldflags="-s -w" -trimpath -o bin/rt-386 .
|
||||
GOOS=linux GOARCH=386 go build -ldflags="-s -w" -trimpath -o ../local-code/remote-bin/rt-386 .
|
||||
popd > /dev/null
|
||||
|
||||
pushd sshappbackend/local-code > /dev/null
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue