Rename cache.ts to cache-wrapper.ts

This commit is contained in:
Paul Merlin 2020-06-14 18:46:49 +02:00
parent 692fda9de7
commit 059f2e7791
4 changed files with 10 additions and 10 deletions

View file

@ -1,8 +1,8 @@
import * as cache from './cache'
import * as cacheWrapper from './cache-wrapper'
// Invoked by GitHub Actions
export async function run(): Promise<void> {
await cache.cacheWrapperDist()
await cacheWrapper.cacheWrapperDist()
}
run()