aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKate Ward <kate.ward@forestent.com>2018-01-18 01:20:52 +0100
committerKate Ward <kate.ward@forestent.com>2018-01-18 01:20:52 +0100
commit6ead6d7ada0298df424b2f49d1d2419740dcae98 (patch)
tree491075b3589e47c36e98749a64129567e4383dcd
parentf7a9994a1eeefb49d5c6143645bc450b527d899d (diff)
downloadshflags-6ead6d7ada0298df424b2f49d1d2419740dcae98.tar.gz
Disable check when exporting variables.
-rw-r--r--shflags_test_helpers2
1 files changed, 2 insertions, 0 deletions
diff --git a/shflags_test_helpers b/shflags_test_helpers
index 06d97f6..77dbf28 100644
--- a/shflags_test_helpers
+++ b/shflags_test_helpers
@@ -15,6 +15,8 @@
# shellcheck disable=SC2006
# Arrays are not available in all shells.
# shellcheck disable=SC2089
+# Exporting variables shouldn't impact their contents.
+# shellcheck disable=SC2090
# Disagree with [ p ] && [ q ] vs [ p -a -q ] recommendation.
# shellcheck disable=SC2166