Skip to content
Snippets Groups Projects
Commit 00fff96e authored by rl1987's avatar rl1987
Browse files

Fix shellcheck warning in test_rebind.sh

parent d1af4d65
No related branches found
No related tags found
No related merge requests found
o Code simplification and refactoring (shell scripts):
- Fix issues shellcheck found in test_rebind.sh. Resolves issue 29063.
......@@ -15,10 +15,15 @@ fi
exitcode=0
tmpdir=
clean () { test -n "$tmpdir" && test -d "$tmpdir" && rm -rf "$tmpdir" || :; }
clean () {
if [ -n "$tmpdir" ] && [ -d "$tmpdir" ]; then
rm -rf "$tmpdir"
fi
}
trap clean EXIT HUP INT TERM
tmpdir="`mktemp -d -t tor_rebind_test.XXXXXX`"
tmpdir="$(mktemp -d -t tor_rebind_test.XXXXXX)"
if [ -z "$tmpdir" ]; then
echo >&2 mktemp failed
exit 2
......
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