Skip to content

Commit e78ff64

Browse files
committed
katana: fix package name for v1.10.1
1 parent 96fad37 commit e78ff64

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/kanata@x86_64

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ app_install() {
1111
local package
1212

1313
# Set the package name for specific version
14-
if utils:compare_versions_alt "$version" le "v1.9.0"; then
14+
if utils:compare_versions "$version" le "v1.9.0"; then
1515
package="${APP_NAME}"
16+
elif utils:compare_versions "$version" ge "v1.10.1"; then
17+
package="${APP_NAME}-linux-binaries-${version}-x64.zip"
1618
else
1719
package="linux-binaries-x64-${version}.zip"
1820
fi

0 commit comments

Comments
 (0)