fixed syntax error in postinstallscript
This commit is contained in:
parent
7e2977a653
commit
fa4cc1a0ad
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