summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhanghua0002022-10-26 20:00:37 +0800
committerzhanghua0002022-10-26 20:00:37 +0800
commite38fd0d56e4b4b4d4a3e66e556879c1db22f02ba (patch)
treea573b4c21abb0d5a4621f5bbaeba0a5593c900c1
parentcb5f39b7324e47c96bafc18d89bfdb85fcea944e (diff)
downloadaur-e38fd0d56e4b4b4d4a3e66e556879c1db22f02ba.tar.gz
Fix system tracker updater
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--update-aria2-tracker2
3 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 529a145923b7..eb8d68df1e3c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = aria2cd
pkgdesc = A systemd Service to start aria2 automatically.
pkgver = 1.3
- pkgrel = 2
+ pkgrel = 3
url = https://aur.archlinux.org/packages/aria2cd
arch = any
license = custom:WTFPL
diff --git a/PKGBUILD b/PKGBUILD
index fcc00191ac0f..096f0f6e3952 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=aria2cd
pkgver=1.3
-pkgrel=2
+pkgrel=3
pkgdesc="A systemd Service to start aria2 automatically."
arch=("any")
url="https://aur.archlinux.org/packages/aria2cd"
diff --git a/update-aria2-tracker b/update-aria2-tracker
index 43a6b814c7d6..9d60011b1c3a 100644
--- a/update-aria2-tracker
+++ b/update-aria2-tracker
@@ -3,7 +3,7 @@
set -e
function get_aria2_home(){
- [[ $(id -nu) == "aria2" ]] && echo /etc/aria2cd && return 0
+ [[ $(id -nu) == "aria2cd" ]] && echo /etc/aria2cd && return 0
for path in ${HOME}/.aria2 ${XDG_CONFIG_HOME:-${HOME}/.config}/aria2
do
[[ -f ${path}/aria2.conf ]] && echo ${path} && return 0