forked from zaclys/searxng
Merge pull request #461 from return42/fix-morty
[fix] morty & filtron: don't use golang installed by package manager
This commit is contained in:
commit
a6c4806239
|
@ -340,7 +340,7 @@ EOF
|
||||||
|
|
||||||
cat > "$GO_ENV" <<EOF
|
cat > "$GO_ENV" <<EOF
|
||||||
export GOPATH=\$HOME/go-apps
|
export GOPATH=\$HOME/go-apps
|
||||||
export PATH=\$PATH:\$HOME/local/go/bin:\$GOPATH/bin
|
export PATH=\$HOME/local/go/bin:\$GOPATH/bin:\$PATH
|
||||||
EOF
|
EOF
|
||||||
echo "Environment $GO_ENV has been setup."
|
echo "Environment $GO_ENV has been setup."
|
||||||
|
|
||||||
|
@ -359,7 +359,7 @@ install_filtron() {
|
||||||
rst_title "Install filtron in user's ~/go-apps" section
|
rst_title "Install filtron in user's ~/go-apps" section
|
||||||
echo
|
echo
|
||||||
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
||||||
go get -v -u github.com/asciimoo/filtron
|
go install -v github.com/asciimoo/filtron@latest
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -367,7 +367,7 @@ update_filtron() {
|
||||||
rst_title "Update filtron" section
|
rst_title "Update filtron" section
|
||||||
echo
|
echo
|
||||||
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
||||||
go get -v -u github.com/asciimoo/filtron
|
go install -v github.com/asciimoo/filtron@latest
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -340,7 +340,7 @@ EOF
|
||||||
|
|
||||||
cat > "$GO_ENV" <<EOF
|
cat > "$GO_ENV" <<EOF
|
||||||
export GOPATH=\$HOME/go-apps
|
export GOPATH=\$HOME/go-apps
|
||||||
export PATH=\$PATH:\$HOME/local/go/bin:\$GOPATH/bin
|
export PATH=\$HOME/local/go/bin:\$GOPATH/bin:\$PATH
|
||||||
EOF
|
EOF
|
||||||
echo "Environment $GO_ENV has been setup."
|
echo "Environment $GO_ENV has been setup."
|
||||||
|
|
||||||
|
@ -359,12 +359,7 @@ install_morty() {
|
||||||
rst_title "Install morty in user's ~/go-apps" section
|
rst_title "Install morty in user's ~/go-apps" section
|
||||||
echo
|
echo
|
||||||
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
||||||
go get -v -u github.com/asciimoo/morty
|
go install -v github.com/asciimoo/morty@latest
|
||||||
EOF
|
|
||||||
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
|
||||||
cd \$GOPATH/src/github.com/asciimoo/morty
|
|
||||||
go test
|
|
||||||
go test -benchmem -bench .
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -372,12 +367,7 @@ update_morty() {
|
||||||
rst_title "Update morty" section
|
rst_title "Update morty" section
|
||||||
echo
|
echo
|
||||||
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
||||||
go get -v -u github.com/asciimoo/morty
|
go install -v github.com/asciimoo/morty@latest
|
||||||
EOF
|
|
||||||
tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
|
|
||||||
cd \$GOPATH/src/github.com/asciimoo/morty
|
|
||||||
go test
|
|
||||||
go test -benchmem -bench .
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue