diff --git a/bamboo-specs/release.yaml b/bamboo-specs/release.yaml index a3c01e94..f3a87545 100644 --- a/bamboo-specs/release.yaml +++ b/bamboo-specs/release.yaml @@ -150,7 +150,7 @@ cd ./dist/ export CHANNEL="${bamboo.channel}" - ./bamboo-deploy-publisher/deploy.sh adguard-home-"$CHANNEL" + ../bamboo-deploy-publisher/deploy.sh adguard-home-"$CHANNEL" 'final-tasks': - 'clean' 'requirements': @@ -179,7 +179,7 @@ SNAPCRAFT_EMAIL="${bamboo.snapcraftEmail}"\ SNAPCRAFT_MACAROON="${bamboo.snapcraftMacaroonPassword}"\ SNAPCRAFT_UBUNTU_DISCHARGE="${bamboo.snapcraftUbuntuDischargePassword}"\ - ./bamboo-deploy-publisher/deploy.sh adguard-home-snap + ../bamboo-deploy-publisher/deploy.sh adguard-home-snap 'final-tasks': - 'clean' 'requirements': @@ -201,8 +201,6 @@ set -e -f -u -x - cd ./dist/ - export CHANNEL="${bamboo.channel}" if [ "$CHANNEL" != 'release' -a "${CHANNEL}" != 'beta' ] then @@ -211,9 +209,11 @@ exit 0 fi + cd ./dist/ + env\ GITHUB_TOKEN="${bamboo.githubPublicRepoPassword}"\ - ./bamboo-deploy-publisher/deploy.sh adguard-home-github + ../bamboo-deploy-publisher/deploy.sh adguard-home-github 'final-tasks': - 'clean' 'requirements': diff --git a/internal/home/auth.go b/internal/home/auth.go index 9d5225ff..63a66a76 100644 --- a/internal/home/auth.go +++ b/internal/home/auth.go @@ -86,7 +86,7 @@ func InitAuth(dbFilename string, users []User, sessionTTL uint32) *Auth { if err != nil { log.Error("auth: open DB: %s: %s", dbFilename, err) if err.Error() == "invalid argument" { - log.Error("AdGuard Home cannot be initialized due to an incompatible file system.\nPlease read the explanation here: https://github.com/AdguardTeam/AdGuardHome/internal/wiki/Getting-Started#limitations") + log.Error("AdGuard Home cannot be initialized due to an incompatible file system.\nPlease read the explanation here: https://github.com/AdguardTeam/AdGuardHome/wiki/Getting-Started#limitations") } return nil diff --git a/internal/stats/unit.go b/internal/stats/unit.go index 96775c72..b3a42767 100644 --- a/internal/stats/unit.go +++ b/internal/stats/unit.go @@ -158,7 +158,7 @@ func (s *statsCtx) dbOpen() bool { if err != nil { log.Error("stats: open DB: %s: %s", s.conf.Filename, err) if err.Error() == "invalid argument" { - log.Error("AdGuard Home cannot be initialized due to an incompatible file system.\nPlease read the explanation here: https://github.com/AdguardTeam/AdGuardHome/internal/wiki/Getting-Started#limitations") + log.Error("AdGuard Home cannot be initialized due to an incompatible file system.\nPlease read the explanation here: https://github.com/AdguardTeam/AdGuardHome/wiki/Getting-Started#limitations") } return false }