fixed syntax error in postinstallscript

This commit is contained in:
Joel Klimont 2023-02-10 14:02:07 +01:00
parent cf415d38e8
commit 7e2977a653

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
if [[ $(uname -m) == "x86_64" ]]; then if [ $(uname -m) == "x86_64" ]; then
echo "Not running on RPi - Skipping postinstall" echo "Not running on RPi - Skipping postinstall"
exit 0 exit 0
fi fi