- BLE: 修复 BlueZ LocalName 与 Includes 冲突,串行注册与退避 - HTTP: 语音对话补 Live2D talking 标志与 session;Web 补 X-Session-Id - Flutter: 角色/对话/模型页 + API,Gradle/依赖升级,麦克风权限 - 文档: 新增 docs/STATUS.md,校准 CLAUDE/PROGRESS/README - 清理: 移除根目录截图与临时模型,运维脚本迁入 scripts/device
17 lines
538 B
Bash
17 lines
538 B
Bash
#!/bin/bash
|
|
echo "=== find cargo config ==="
|
|
find /home/showen -name "config.toml" -path "*.cargo*" 2>/dev/null
|
|
find /home/showen -name "config" -path "*.cargo*" 2>/dev/null
|
|
find / -name "config.toml" -path "*cargo*" 2>/dev/null | head -5
|
|
|
|
echo "=== check .cargo dir ==="
|
|
ls -la /home/showen/.cargo/ 2>/dev/null
|
|
|
|
echo "=== rustup cargo home ==="
|
|
echo $CARGO_HOME
|
|
ls -la ~/.cargo/ 2>/dev/null
|
|
|
|
echo "=== project cargo ==="
|
|
ls -la /home/showen/Showen/ShowenV2/.cargo/ 2>/dev/null
|
|
find /home/showen/Showen -name ".cargo" -type d 2>/dev/null
|