new binary for alpie apk support

This commit is contained in:
Muhammad Ibrahim
2025-11-11 12:42:00 +00:00
parent 9857d7cdfc
commit ab700a3bc8
10 changed files with 124 additions and 396 deletions

View File

@@ -1669,7 +1669,7 @@ const Integrations = () => {
<div className="flex items-center gap-2">
<input
type="text"
value={`curl -s "${getProxmoxUrl()}" | bash`}
value={`curl -s "${getProxmoxUrl()}" | sh`}
readOnly
className="flex-1 px-3 py-2 border border-secondary-300 dark:border-secondary-600 rounded-md bg-secondary-50 dark:bg-secondary-900 text-secondary-900 dark:text-white font-mono text-xs"
/>
@@ -1677,7 +1677,7 @@ const Integrations = () => {
type="button"
onClick={() =>
copy_to_clipboard(
`curl -s "${getProxmoxUrl()}" | bash`,
`curl -s "${getProxmoxUrl()}" | sh`,
"curl-command",
)
}