diff --git a/dist/utils/getGithubRelease.js b/dist/utils/getGithubRelease.js index 7e2c607..faa6939 100644 --- a/dist/utils/getGithubRelease.js +++ b/dist/utils/getGithubRelease.js @@ -1,5 +1,5 @@ import fetch from 'node-fetch'; -import { getArchitecture } from './getAsset'; +import { getArchitecture } from './getAsset.js'; export default async (version, token, fullRepository, customDownloadUrl, miscTestBuilds) => { const repository = miscTestBuilds ? 'oven-sh/misc-test-builds' : fullRepository.split('/').slice(3).join('/'); let url; diff --git a/src/utils/getGithubRelease.ts b/src/utils/getGithubRelease.ts index 43a2e5c..c83daba 100644 --- a/src/utils/getGithubRelease.ts +++ b/src/utils/getGithubRelease.ts @@ -1,5 +1,5 @@ import fetch from 'node-fetch'; -import { getArchitecture } from './getAsset'; +import { getArchitecture } from './getAsset.js'; export interface Asset { name: string;