refactor: embed install.sh script in uc CLI to not curl | sh and version together with CLI

This commit is contained in:
Pasha Sviderski
2026-04-24 11:37:12 +10:00
parent cd07278858
commit fe829efbf5
3 changed files with 61 additions and 42 deletions
+8
View File
@@ -0,0 +1,8 @@
// Package scripts embeds shell scripts shipped with the uc CLI so they can be
// executed on remote machines without being fetched from the network.
package scripts
import _ "embed"
//go:embed install.sh
var InstallScript string