You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2021/10/29 14:39:47 UTC

svn commit: r1894617 - /httpd/httpd/trunk/test/travis_run_linux.sh

Author: icing
Date: Fri Oct 29 14:39:46 2021
New Revision: 1894617

URL: http://svn.apache.org/viewvc?rev=1894617&view=rev
Log:
 * test mod_md, try new gopath first, subshell go install cd


Modified:
    httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1894617&r1=1894616&r2=1894617&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Fri Oct 29 14:39:46 2021
@@ -177,9 +177,9 @@ if ! test -v SKIP_TESTING; then
         export GOROOT=/usr/lib/go-1.14
         export GOPATH=${PREFIX}/gocode
         mkdir -p "${GOPATH}"
-        export PATH="${PATH}:${GOROOT}/bin:${GOPATH}/bin"
+        export PATH="${GOROOT}/bin:${GOPATH}/bin:${PATH}"
         go get -u github.com/letsencrypt/pebble/...
-        cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...
+        (cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...)
 
         py.test-3 test/modules/md
         RV=$?