Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
max-heller committed Nov 25, 2023
1 parent 7b1d730 commit a41534f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87154,6 +87154,7 @@ class CacheConfig {
keyFiles.push(...(await globFiles(`${root}/**/.cargo/config.toml\n${root}/**/rust-toolchain\n${root}/**/rust-toolchain.toml`)));
const workspaceMembers = await workspace.getPackages("--no-deps");
const cargo_manifests = sort_and_uniq(workspaceMembers.map(member => external_path_default().join(member.path, "Cargo.toml")));
console.log(cargo_manifests);
for (const cargo_manifest of cargo_manifests) {
try {
const content = await promises_default().readFile(cargo_manifest, { encoding: "utf8" });
Expand Down
1 change: 1 addition & 0 deletions dist/save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87154,6 +87154,7 @@ class CacheConfig {
keyFiles.push(...(await globFiles(`${root}/**/.cargo/config.toml\n${root}/**/rust-toolchain\n${root}/**/rust-toolchain.toml`)));
const workspaceMembers = await workspace.getPackages("--no-deps");
const cargo_manifests = sort_and_uniq(workspaceMembers.map(member => external_path_default().join(member.path, "Cargo.toml")));
console.log(cargo_manifests);
for (const cargo_manifest of cargo_manifests) {
try {
const content = await promises_default().readFile(cargo_manifest, { encoding: "utf8" });
Expand Down
1 change: 1 addition & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export class CacheConfig {
const workspaceMembers = await workspace.getPackages("--no-deps");

const cargo_manifests = sort_and_uniq(workspaceMembers.map(member => path.join(member.path, "Cargo.toml")));
console.log(cargo_manifests);

for (const cargo_manifest of cargo_manifests) {
try {
Expand Down

0 comments on commit a41534f

Please sign in to comment.