karnel-termux 4.11.5 → 4.11.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,11 +30,11 @@ supabase_main() {
30
30
  supabase_link "$@"
31
31
  ;;
32
32
  install)
33
- import "@/tools/supabase/all"
33
+ import "@/tools/deploy/supabase/install"
34
34
  install_supabase
35
35
  ;;
36
36
  uninstall)
37
- import "@/tools/supabase/all"
37
+ import "@/tools/deploy/supabase/install"
38
38
  uninstall_supabase
39
39
  ;;
40
40
  *)
@@ -26,9 +26,9 @@ install_supabase() {
26
26
  *) log_error "Unsupported architecture: $arch"; return 1 ;;
27
27
  esac
28
28
 
29
- local filename="supabase_${_SUPABASE_VERSION}_linux_${go_arch}.tar.gz"
29
+ local filename="supabase_linux_${go_arch}.tar.gz"
30
30
  local url="${_SUPABASE_RELEASE_URL}/${filename}"
31
- local checksum_url="${_SUPABASE_RELEASE_URL}/checksums.txt"
31
+ local checksum_url="${_SUPABASE_RELEASE_URL}/supabase_${_SUPABASE_VERSION}_checksums.txt"
32
32
  local tmp_dir
33
33
  tmp_dir=$(mktemp -d)
34
34
 
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- KARNEL_VERSION="4.11.5"
3
+ KARNEL_VERSION="4.11.6"
4
4
 
5
5
  # -------------------------
6
6
  # Directorios del usuario
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "karnel-termux",
3
- "version": "4.11.5",
3
+ "version": "4.11.6",
4
4
  "description": "Modular Dev Environment for Termux — install languages, databases, AI agents, editors, and more with one command",
5
5
  "bin": {
6
6
  "karnel": "karnel/bin/karnel"