mirror of
https://github.com/Swatinem/rust-cache
synced 2025-04-07 05:44:07 +00:00
remove git-db for now
This commit is contained in:
parent
1304a2ec8d
commit
06ff70612d
|
@ -24,7 +24,7 @@ export interface CacheConfig {
|
||||||
export interface Caches {
|
export interface Caches {
|
||||||
index: CacheConfig;
|
index: CacheConfig;
|
||||||
cache: CacheConfig;
|
cache: CacheConfig;
|
||||||
git: CacheConfig;
|
// git: CacheConfig;
|
||||||
target: CacheConfig;
|
target: CacheConfig;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,11 +62,11 @@ export async function getCaches(): Promise<Caches> {
|
||||||
key: `${registryCache}-${lockHash}`,
|
key: `${registryCache}-${lockHash}`,
|
||||||
restoreKeys: [registryCache],
|
restoreKeys: [registryCache],
|
||||||
},
|
},
|
||||||
git: {
|
// git: {
|
||||||
name: "Git Dependencies",
|
// name: "Git Dependencies",
|
||||||
path: paths.git,
|
// path: paths.git,
|
||||||
key: "git-db",
|
// key: "git-db",
|
||||||
},
|
// },
|
||||||
target: {
|
target: {
|
||||||
name: "Target",
|
name: "Target",
|
||||||
path: paths.target,
|
path: paths.target,
|
||||||
|
|
Loading…
Reference in a new issue