Closed Mearman closed 2 months ago
Sorry. Meant to mark this as non-draft. Still tinkering with different scenarios. Thank you for the review though!
This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.
set -e
causes the script to exit immediately if a command exits with a non-zero status.set -u
causes the script to exit immediately if an unset variable is used.set -o pipefail
causes the script to exit immediately if a pipe command fails.