remove bash-isms from rc.local (executed with sh)

pull/207/head
Jeffrey Paul 2018-09-20 17:01:41 -07:00 committed by GitHub
parent 7c780d51bb
commit c339c4e21e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ if [ "$_IP" ]; then
fi
# run an rc.local.txt from the boot partition, if one exists.
if [[ -e /boot/rc.local.txt ]]; then
if [ -e /boot/rc.local.txt ]; then
source /boot/rc.local.txt
fi