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

Detect i686 architecture as i386

This commit is contained in:
mbugeia 2016-08-15 19:30:32 +02:00
parent 706b3f1f5b
commit e9decb8913
2 changed files with 1 additions and 4 deletions

View file

@ -38,9 +38,6 @@ https://github.com/gogits/gogs/blob/master/LICENSE
This package is published under MIT License
TODO
----
- Backup and restore script need rework
Developper infos
----------------

View file

@ -11,7 +11,7 @@ VERSION="0.9.71"
case $(arch) in
x86_64) ARCHITECTURE="amd64"
;;
i386) ARCHITECTURE="386"
i386|i686) ARCHITECTURE="386"
;;
armhf|armel) ARCHITECTURE="arm"
;;