Skip to content

Commit 5f546e7

Browse files
committed
spotifyd: fix package name for v0.4.0
1 parent 942cd5a commit 5f546e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/spotifyd@x86_64

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ app_info() {
88

99
app_install() {
1010
local version="${1:-$(app_version)}"
11+
local package="$APP_NAME-linux-$APP_ARCH-full"
1112

12-
local package="$APP_NAME-linux-full"
13+
# Set the package name for specific version
14+
if utils:compare_versions "${version#v}" lt "0.4.0"; then
15+
package="$APP_NAME-linux-full"
16+
fi
1317

1418
utils:get_file \
1519
"https://github.com/Spotifyd/spotifyd/releases/download/$version/$package.tar.gz" \

0 commit comments

Comments
 (0)