fix: Better handling of errors with install script

This commit is contained in:
Jason Hollis 2023-12-07 12:08:43 -05:00
parent 7ffebd71f3
commit 9df0a2e545
No known key found for this signature in database
GPG Key ID: 1B59AA074288D09B

View File

@ -1,6 +1,10 @@
#!/bin/bash
## Do not modify this file. You will lose the ability to install and auto-update!
set -e # Exit immediately if a command exits with a non-zero status
set -u # Treat unset variables as an error and exit
set -o pipefail # Cause a pipeline to return the status of the last command that exited with a non-zero status
VERSION="1.1.0"
DOCKER_VERSION="24.0"