fixed syntax error in postinstallscript

This commit is contained in:
Joel Klimont 2023-02-10 14:29:13 +01:00
parent 7e2977a653
commit fa4cc1a0ad

View file

@ -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