| From: Matt Rogers <mrog...@redhat.com>

| Yeah, the set -ue in the script points out these problems, but they were
| really ignorable since it wasn't affecting the active tests. For now you
| can just comment that out and run the script to get the certs you need.

set -ue is good.  I think every script should use it.

If you wish to ignore errors, write explicit code to do so.

For example:
  possibly bad command 
becomes:
  possibly bad command || true
or better:
  if ! possibly bad command ; then
    echo "possibly bad command failed with $?; continuing anyway" >&2
  endif
_______________________________________________
Swan-dev mailing list
Swan-dev@lists.libreswan.org
https://lists.libreswan.org/mailman/listinfo/swan-dev

Reply via email to