Skip to content

Commit

Permalink
improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
friedrichwilken committed Dec 20, 2023
1 parent b2f42d4 commit 66cdb86
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/check_sec-scanners-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -o errexit # exit immediately when a command fails.
set -E # needs to be set if we want the ERR trap
set -o pipefail # prevents errors in a pipeline from being masked

# Get release version
# The desired tag is the release version.
DESIRED_TAG="${1}"

# Get nats-manager image tag from sec-scanners-config.yaml.
Expand All @@ -32,6 +32,6 @@ if [[ "$IMAGE_TAG" != "$DESIRED_TAG" ]] || [[ "$RC_TAG" != "$DESIRED_TAG" ]]; th
exit 1
fi

# OK: Everything is fine
# OK; Everything is fine.
echo "Tags are correct"
exit 0
2 changes: 1 addition & 1 deletion .github/scripts/check_tag_does_not_exist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -o errexit # exit immediately when a command fails.
set -E # needs to be set if we want the ERR trap
set -o pipefail # prevents errors in a pipeline from being masked

# This script checks that the TAG arg does not exist, already.
# This script checks that the tag does not exist in git.

TAG="$1"

Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/render_and_upload_manifests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# This script will render the latest manifests and it will uploaded them to the release on github.com.
# This script will render the latest manifests and it will uploaded them to the release on github.com.

# Error handling
set -o nounset # treat unset variables as an error and exit immediately.
Expand Down

0 comments on commit 66cdb86

Please sign in to comment.