Debugging messages for gogs install
This commit is contained in:
parent
662c8b0486
commit
c1fe82c8fe
|
@ -6671,6 +6671,7 @@ function install_gogs {
|
|||
GO_PACKAGE_MANAGER_REPO2=$(echo "$GO_PACKAGE_MANAGER_REPO" | sed 's|https://||g')
|
||||
go get -u $GO_PACKAGE_MANAGER_REPO2
|
||||
if [ ! "$?" = "0" ]; then
|
||||
echo $'install_gogs: go get failed'
|
||||
exit 479832
|
||||
fi
|
||||
|
||||
|
@ -6695,6 +6696,7 @@ function install_gogs {
|
|||
go get -u ./...
|
||||
go build
|
||||
if [ ! "$?" = "0" ]; then
|
||||
echo $'install_gogs: go build failed'
|
||||
exit 546750
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue