mirror of
https://github.com/YunoHost-Apps/gogs_ynh.git
synced 2024-09-03 20:36:23 +02:00
Merge pull request #24 from YunoHost-Apps/linter_fixes
[enh] linter fixes:
This commit is contained in:
commit
92202d1f2f
4 changed files with 11 additions and 9 deletions
|
@ -4,8 +4,8 @@
|
|||
"id": "gogs",
|
||||
"packaging_format": 1,
|
||||
"description": {
|
||||
"en": "A self-hosted Git service written in Go",
|
||||
"fr": "A self-hosted Git service written in Go"
|
||||
"en": "Lightweight git forge",
|
||||
"fr": "Forge git légère"
|
||||
},
|
||||
"url": "http://gogs.io",
|
||||
"license": "MIT",
|
||||
|
|
|
@ -17,9 +17,8 @@ elif [ -n "$(uname -m | grep 86)" ]; then
|
|||
elif [ -n "$(uname -m | grep arm)" ]; then
|
||||
ARCHITECTURE="raspi2_armv6"
|
||||
else
|
||||
echo 'Unable to detect your achitecture, please open a bug describing \
|
||||
your hardware and the result of the command "uname -m".'
|
||||
exit 1
|
||||
ynh_die "Unable to detect your achitecture, please open a bug describing \
|
||||
your hardware and the result of the command \"uname -m\"." 1
|
||||
fi
|
||||
|
||||
# Remote URL to fetch Gogs tarball
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
set -euo pipefail
|
||||
|
||||
# Retrieve arguments
|
||||
domain=$1
|
||||
path=$2
|
||||
admin=$3
|
||||
is_public=$4
|
||||
domain=$YNH_APP_ARG_DOMAIN
|
||||
path=$YNH_APP_ARG_PATH
|
||||
admin=$YNH_APP_ARG_ADMIN
|
||||
is_public=$YNH_APP_ARG_PUBLIC_SITE
|
||||
|
||||
# Load common variables
|
||||
source ./_common.sh
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Exit and treat unset variables as an error
|
||||
set -u
|
||||
|
||||
# Load common variables and helpers
|
||||
source ./_common.sh
|
||||
|
||||
|
|
Loading…
Reference in a new issue