remove debug
Some checks failed
Deploy & Publish Image / deploy (ubuntu-latest, 2.44.0) (push) Failing after 1m29s

Took 41 seconds
This commit is contained in:
Braydon 2024-10-13 20:43:02 -04:00
parent 573f13568d
commit b23c48246d

View File

@ -38,7 +38,6 @@ const UPDATE_INTERVAL_MS: number = 10 * 60 * 1000; // 10 minutes in milliseconds
* If it's a Git URL, clone it to a cache directory and reuse it.
*/
const getDocsDirectory = cache(async (): Promise<string> => {
console.log("retrieve docs dir");
if (isGitUrl(DOCS_DIR)) {
const repoHash: string = Buffer.from(DOCS_DIR).toString("base64"); // Create a unique identifier based on the repo URL
const cacheDir: string = path.join(os.tmpdir(), "docs_cache", repoHash);