The installer only appends PATH to .bashrc, so the fresh binary was invisible to the launching process and the login never started. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QKxGW1raAWaqeU8WdHsMsp
24 lines
636 B
Bash
Executable File
24 lines
636 B
Bash
Executable File
#!/bin/bash
|
|
# omarchy:summary=Install Kimi Code with the official installer script
|
|
# omarchy:examples=omarchycn kimi install
|
|
|
|
set -euo pipefail
|
|
|
|
if omarchy-cmd-present kimi; then
|
|
echo "Kimi Code 已安装"
|
|
exit 0
|
|
fi
|
|
|
|
installer=$(mktemp)
|
|
trap 'rm -f "$installer"' EXIT
|
|
curl -fsSL https://code.kimi.com/kimi-code/install.sh -o "$installer"
|
|
bash "$installer"
|
|
|
|
# The official installer only touches .bashrc PATH; expose kimi now
|
|
if [[ ! -x $HOME/.kimi-code/bin/kimi ]]; then
|
|
echo "kimi binary missing after the official installer" >&2
|
|
exit 1
|
|
fi
|
|
mkdir -p "$HOME/.local/bin"
|
|
ln -sf "$HOME/.kimi-code/bin/kimi" "$HOME/.local/bin/kimi"
|