We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 942cd5a commit 5f546e7Copy full SHA for 5f546e7
apps/spotifyd@x86_64
@@ -8,8 +8,12 @@ app_info() {
8
9
app_install() {
10
local version="${1:-$(app_version)}"
11
+ local package="$APP_NAME-linux-$APP_ARCH-full"
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
17
18
utils:get_file \
19
"https://github.com/Spotifyd/spotifyd/releases/download/$version/$package.tar.gz" \
0 commit comments