workflow: check ~/.claw-cargo/config.toml (actual convention)
Build with clawstor cache / Cargo build (clawstor-cached) (push) Successful in 7s

client_config.rs load_layered looks at ~/.claw-cargo/config.toml,
not ~/.config/claw-cargo/config.toml. Fix the workflow preflight
path to match. Both runners already have the file at both locations.
This commit is contained in:
Omar Sobh
2026-07-13 01:48:50 -07:00
parent a81c4d5614
commit 927c3e03ea
+1 -1
View File
@@ -28,7 +28,7 @@ jobs:
fi fi
$bin --version | head -1 $bin --version | head -1
done done
cfg="$HOME/.config/claw-cargo/config.toml" cfg="$HOME/.claw-cargo/config.toml"
test -s "$cfg" || { echo "no $cfg"; exit 1; } test -s "$cfg" || { echo "no $cfg"; exit 1; }
args=(build --workspace . --profile dev --parallel-restore 1) args=(build --workspace . --profile dev --parallel-restore 1)