fixed syntax error in postinstallscript
This commit is contained in:
parent
cf415d38e8
commit
7e2977a653
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if [[ $(uname -m) == "x86_64" ]]; then
|
||||
if [ $(uname -m) == "x86_64" ]; then
|
||||
echo "Not running on RPi - Skipping postinstall"
|
||||
exit 0
|
||||
fi
|
||||
|
|
Reference in a new issue