From e9decb8913b6bb81713be066ea7f555846ce6b5f Mon Sep 17 00:00:00 2001 From: mbugeia Date: Mon, 15 Aug 2016 19:30:32 +0200 Subject: [PATCH] Detect i686 architecture as i386 --- README.markdown | 3 --- scripts/_common.sh | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index e9b7271..10f8e06 100644 --- a/README.markdown +++ b/README.markdown @@ -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 ---------------- diff --git a/scripts/_common.sh b/scripts/_common.sh index eea4e0b..66537ee 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -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" ;;