diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-04-08 11:16:50 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-04-08 11:16:50 -0400 |
commit | 5c0e5b2f0447ba71ebf25a0937ee8d28d0dfd502 (patch) | |
tree | 1f1e2136ac91ed834e9ccf9c400569ba17c91b6c | |
parent | 5b343f3e2515eb1077792564735f7e7c9e4c65e7 (diff) | |
download | bfs-5c0e5b2f0447ba71ebf25a0937ee8d28d0dfd502.tar.xz |
tests.sh: Use eval instead of declare -g
Turns out declare -g is from Bash 4 too.
-rwxr-xr-x | tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -354,7 +354,7 @@ done function enable_tests() { for test; do - declare -g run_$test=yes + eval run_$test=yes done } |