You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A hack to get the quickstart going in this scenario was to replace : with _ in the PKGS var but that disabled the lint so is a pretty horrid workaround.
We should come up with a way to escape or workaround better.
From slack a user with bitbucketserver tried the golang quickstart but it fails in the release pipeline with
This can be recreated by creating a golang quickstart in your go path under a git server that includes a : port e.g.
Now run
make buildin that folder.The issue is the paths that
go list ./... | grep -v /vendor | grep -v generatedfrom https://github.com/jenkins-x/draft-packs/blob/dfda4a9/packs/go/Makefile#L9 returns contain the:which causes issues in the Makefile targets.A hack to get the quickstart going in this scenario was to replace
:with_in thePKGSvar but that disabled the lint so is a pretty horrid workaround.We should come up with a way to escape or workaround better.