diff options
author | zxp19821005 | 2024-07-22 15:10:47 +0800 |
---|---|---|
committer | zxp19821005 | 2024-07-22 15:10:47 +0800 |
commit | a6e59a1cb6694b1352221cbaf37ab26c3ba740cd (patch) | |
tree | 6209e65d70ef62ce21a66f78dcbb2d10ad65c5eb | |
parent | b1df44ccaaabf11c375490d5e669683d4e86dfe4 (diff) | |
download | aur-a6e59a1cb6694b1352221cbaf37ab26c3ba740cd.tar.gz |
fix errors
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 4 | ||||
-rw-r--r-- | aniflix.sh | 4 |
3 files changed, 6 insertions, 6 deletions
@@ -1,7 +1,7 @@ pkgbase = aniflix-bin pkgdesc = Anime Streaming Desktop App pkgver = 0.0.1 - pkgrel = 10 + pkgrel = 11 url = https://aniflix.lamaau.space/ arch = x86_64 license = MIT @@ -13,6 +13,6 @@ pkgbase = aniflix-bin source = aniflix.sh sha256sums = db3c22d7f9d359852125fd5f3dc570fe540d3e10b2a172472cbf0c9df2b986da sha256sums = c3cc74287725f86a3a56a0e4d88895716ff81ff3c576ae69221feaa2539c0f86 - sha256sums = 41b6d61dffef064762b3eec3dfeca7a3e1f57cbcb6dce9a6940c06797a0eae9d + sha256sums = 2b2e8aeed33fd71c521e49fd54fb2fa81218d16aef8bccb88d77909055ab8051 pkgname = aniflix-bin @@ -2,7 +2,7 @@ pkgname=aniflix-bin pkgver=0.0.1 _electronversion=23 -pkgrel=10 +pkgrel=11 pkgdesc="Anime Streaming Desktop App" arch=('x86_64') url="https://aniflix.lamaau.space/" @@ -20,7 +20,7 @@ source=( ) sha256sums=('db3c22d7f9d359852125fd5f3dc570fe540d3e10b2a172472cbf0c9df2b986da' 'c3cc74287725f86a3a56a0e4d88895716ff81ff3c576ae69221feaa2539c0f86' - '41b6d61dffef064762b3eec3dfeca7a3e1f57cbcb6dce9a6940c06797a0eae9d') + '2b2e8aeed33fd71c521e49fd54fb2fa81218d16aef8bccb88d77909055ab8051') build() { sed -e "s|@electronversion@|${_electronversion}|g" \ -e "s|@appname@|${pkgname%-bin}|g" \ diff --git a/aniflix.sh b/aniflix.sh index 398398461fee..4cfe3ac09dd8 100644 --- a/aniflix.sh +++ b/aniflix.sh @@ -23,7 +23,7 @@ if [[ -f "${_FLAGS_FILE}" ]]; then fi cd "${_APPDIR}" if [[ "${EUID}" -ne 0 ]] || [[ "${ELECTRON_RUN_AS_NODE}" ]]; then - exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" "${_USER_FLAGS[@]}" "$@" + exec electron@electronversion@ "${_RUNNAME}" ${_OPTIONS} "${_USER_FLAGS[@]}" "$@" else - exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" --no-sandbox "${_USER_FLAGS[@]}" "$@" + exec electron@electronversion@ "${_RUNNAME}" ${_OPTIONS} --no-sandbox "${_USER_FLAGS[@]}" "$@" fi
\ No newline at end of file |