Commit 8a889558144e18b25f409ac7895c9e373ab27496

Authored by 김태훈
1 parent 4a6c078ab0
Exists in master and in 2 other branches fhd, fhd-demo

Go 빌드 권한 문제 수정

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
app/modbus-data-viewer/build.sh
1 #!/bin/bash 1 #!/bin/bash
2 2
3 GOPATH=$PWD go get -v service-web && \ 3 GOPATH=$PWD go get -v service-web && \
4 -GOPATH=$PWD GOARCH=arm GOOS=linux go install service-web 4 +GOPATH=$PWD GOARCH=arm GOOS=linux go build service-web && \
  5 +mkdir -p bin/linux_arm && \
  6 +mv service-web bin/linux_arm/
5 7
6 exit $? 8 exit $?