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

correction de bug

This commit is contained in:
Lahire Biette 2015-03-26 17:33:09 +01:00
parent 5e6234dbbf
commit 52d96e8278

View file

@ -9,9 +9,11 @@ syncVersion="0.10.29"
arch=`uname -m`
if [ "$arch" = "x86_64" ] ; then
syncArch="amd64"
elif [ "$arch" = "i386" ] || [ "$arch" == "i686" ] ; then
fi
if [ "$arch" = "i386" ] || [ "$arch" == "i686" ] ; then
syncArch="386"
elif [ "$arch" = "arm" ] ; then
fi
if [ "$arch" = "arm" ] ; then
syncArch="arm"
fi
syncHome="/home/yunohost.syncthing"