We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f1b558 commit c7b6221Copy full SHA for c7b6221
ci/build/release-prep.sh
@@ -12,12 +12,7 @@ set -euo pipefail
12
main() {
13
if [ "${DRY_RUN-}" = 1 ]; then
14
echo "Performing a dry run..."
15
- # Disabled because shellcheck wants me to do this
16
- # SC2209: Use var=$(command) to assign output (or quote to assign string).
17
- # But neither of those match my needs
18
- # We do this so that the dry run echos the commands instead of running them
19
- # shellcheck disable=SC2209
20
- CMD=echo
+ CMD="echo"
21
else
22
CMD=''
23
fi
0 commit comments