From 06aab316a11935f492f76dff45530bad77540a35 Mon Sep 17 00:00:00 2001 From: "George L. Albany" Date: Tue, 18 Jul 2023 04:39:29 +0000 Subject: [PATCH] Fix #118 --- dist/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 9c69b5af..a2548151 100644 --- a/dist/index.js +++ b/dist/index.js @@ -58685,13 +58685,13 @@ async function downloadFile(filePath, downloadUrl, cacheKey, restoreKey) { async function downloadTemplates() { const templatesPath = external_path_.join(GODOT_WORKING_PATH, GODOT_TEMPLATES_FILENAME); const cacheKey = `godot-templates-${GODOT_TEMPLATES_DOWNLOAD_URL}`; - const restoreKey = `godot-templates-`; + const restoreKey = `godot-templates-${GODOT_TEMPLATES_DOWNLOAD_URL}`; await downloadFile(templatesPath, GODOT_TEMPLATES_DOWNLOAD_URL, cacheKey, restoreKey); } async function downloadExecutable() { const executablePath = external_path_.join(GODOT_WORKING_PATH, GODOT_ZIP); const cacheKey = `godot-executable-${GODOT_DOWNLOAD_URL}`; - const restoreKey = `godot-executable-`; + const restoreKey = `godot-executable-${GODOT_DOWNLOAD_URL}`; await downloadFile(executablePath, GODOT_DOWNLOAD_URL, cacheKey, restoreKey); } function isGhes() {