Hi Tim, > >>> CCLD wget2 > > > > Please make it a habit to use "make V=1" when submitting a report. > > I don't want to see "CCLD wget2"; I want to see the actual link > > command line. > > I don't have direct console/shell access - the issue is/was on a FreeBSD > instance running somewhere that we use for testing via Gitlab CI.
You could, instead of running make run make || { echo 'Retrying with verbosity'; make V=1; exit 1; } This way, the overall log is compact, but it is verbose at the place where we need it. > it wasn't obvious in that moment that 'make V=1' would be helpful. The best practice for bug reporters has always been - for years: "Show the command that was executed, and show the results that it produced." Bruno