From 568050cb53bf515ba8d1ca462d7bcbca6f17a9fe Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Sun, 11 Feb 2024 16:35:33 -0500 Subject: [PATCH] Added some comments to the top --- build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sh b/build.sh index dc42896..90c8075 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,8 @@ #!/usr/bin/env bash +# TODO: Add a comment block at the top of the script, describing what it does. +# TODO: Add a '-h' or '--help' flag, that displays information about the script, and how to use it. + set -o errexit # Stop executing when a command fails set -o nounset # Stop executing when accessing an unset variable set -o pipefail # Treat a pipeline as failing, even if one command in the pipeline fails