Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Spartan322 committed Jul 18, 2023
1 parent 359a9f1 commit 06aab31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 06aab31

Please sign in to comment.