Merge pull request #41 from nelsontkq/patch-1

Double equals doesn't work between single brackets
This commit is contained in:
marcosfad 2021-07-29 23:48:58 +02:00 committed by GitHub
commit 519b4c14f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
if [ "${1}" == "pre" ]; then
if [ "${1}" = "pre" ]; then
modprobe -r apple_ib_tb
elif [ "${1}" == "post" ]; then
elif [ "${1}" = "post" ]; then
modprobe apple_ib_tb
fi