Skip to content

Commit

Permalink
Update variables.sh: Add disable SC2317
Browse files Browse the repository at this point in the history
For some reason sourcing in variables.sh causes every subsequent line in every file to give SC2317 errors
  • Loading branch information
EricClaeys authored Dec 18, 2024
1 parent 7fb7c59 commit dc866fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion variables.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# shellcheck disable=SC2034 # variable unused
# shellcheck disable=SC2034,SC2317 # variable unused, statement unreached

# This file is source'd into other files to set some variables used by scripts.
# This allows us to easily add and change directory names.
Expand Down

0 comments on commit dc866fe

Please sign in to comment.