Skip to content
Snippets Groups Projects
Unverified Commit e3139b5b authored by Grische's avatar Grische Committed by GitHub
Browse files

scripts: enable checks for unassigned uppercase (#3302)

As almost all variables are upper-case and do not follow the intention of
https://github.com/koalaman/shellcheck/issues/1037#issuecomment-341288433
include checks for unassigned upper-case variables.
parent 93b600a9
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
# shellcheck enable=check-unassigned-uppercase
set -euo pipefail
......@@ -21,4 +22,3 @@ else
echo "Please install either podman or docker. Exiting" >&2
exit 1
fi
#!/bin/bash
# shellcheck enable=check-unassigned-uppercase
set -e
shopt -s nullglob
......
#!/usr/bin/env bash
# shellcheck enable=check-unassigned-uppercase
set -eo pipefail
......
#!/bin/bash
# shellcheck enable=check-unassigned-uppercase
set -e
shopt -s nullglob
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment