workflow: check ~/.claw-cargo/config.toml (actual convention)
Build with clawstor cache / Cargo build (clawstor-cached) (push) Successful in 7s
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:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user