1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/writefreely_ynh.git synced 2024-09-03 20:36:02 +02:00

Fix architecture detection

This commit is contained in:
yalh76 2019-03-16 04:09:58 +01:00
parent fa88882434
commit 41d4fda1f8

View file

@ -1,6 +1,6 @@
#!/bin/bash
if [ -n "$(uname -m | grep 64)" ]; then
if [ -n "$(uname -m | grep x86_64)" ]; then
architecture="x86-64"
elif [ -n "$(uname -m | grep 86)" ]; then
architecture="i386"