Unverified Commit 6401920d authored by Andy Pan's avatar Andy Pan Committed by GitHub
Browse files

Fix sentinel FD leak test, checking the wrong OS name (#8364)

parent 1be29606
#!/usr/bin/env bash #!/usr/bin/env bash
OS=`uname -s` OS=`uname -s`
if [ ${OS} == "Linux" ] if [ ${OS} != "Linux" ]
then then
exit 0 exit 0
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment